selenium-java-testng.hashnode.dev馃З When Selenium's dragAndDrop() Executes... But Nothing HappensWe've all been there. Your tests runs. No exceptions. No red errors. But the UI? Nothing moved. Recently, I faced this exact issue while automating drag-and -drop on the demoqa page using Selenium wit17h ago路2 min read
selenium-java-testng.hashnode.dev馃殌 Generating Dynamic Test Data in Selenium Using Ollama (Local LLM)Maintaining test data is one of the most painful parts of automation. Static datasets get reused, edge cases are missed, and managing large test data files becomes messy over time. Recently, I experimented with using Ollama (local LLM) inside my Java...Feb 7路2 min read
selenium-java-testng.hashnode.dev馃殌 Adding AI Failure Analysis to a Selenium + Cucumber Framework Using OllamaDebugging automation failures is often the most time-consuming part of test automation. Logs are noisy, stack traces are long, and identifying the root cause sometimes takes longer than writing the test itself. So I decided to experiment with somethi...Feb 6路2 min read
selenium-java-testng.hashnode.devSelenium Date Picker Automation: Why clear() Fails and how to fix It (React DatePicker Case)while automating a date picker recently, I ran into an issue that looks simple but wastes a lot of debugging time: dateInputField.clear(); Instead of clearing the field, the calendar popup kept appearing, and sometimes the previous value came back a...Feb 5路2 min read
selenium-java-testng.hashnode.devSwitching Between Frames in Selenium Java - The Right WayIf you鈥檝e worked with Selenium long enough, you will run into frames / iframes. And if you don鈥檛 handle them properly, Selenium will humble you real quick. In this blog, I鈥橪L break down: What frames are Why Selenium struggles with them Different w...Jan 25路2 min read