< 1 minute read Keeping your web applications visually consistent across various platforms and updates is crucial yet challenging. Thankfully, screenshot comparison tools are here to help. These tools enable developers and testers to automatically identify visual differences, streamlining the process of maintaining visual integrity. Here’s a rundown of some standout tools, each with unique features to suit different… Read more »
Posts Categorized: UI Testing
How to use Apache JMeter’s WebDriver Sampler to Load Test the UI of an Application
3 minutes read Here is how to use Apache JMeter’s WebDriver Sampler to load test the UI of the application, and by the UI, I mean load test a user’s workflow, with entering the web pages, clicking on different links etc. All you have to do is install the JMeter plugins and make use of the WebDriver Config… Read more »
How to Open a New Tab using Selenium WebDriver with Java?
2 minutes read If you want to open a new tab in the browser with Selenium WebDriver and Java, below we’ve listed some working examples. Have in mind that at the moment, Selenium WebDriver has no build-in ability to open new tabs or new windows, and because of this we have to force the browser to open the… Read more »
How to use Explicit and Implicit Waits in Selenium WebDriver with Java
2 minutes read Navigating the dynamic nature of web applications can be challenging without the right tools. Selenium WebDriver shines in automated testing by interacting with web elements that might not be immediately available due to page loads or AJAX requests. Understanding and implementing waits in Selenium WebDriver is crucial for robust test scripts, ensuring elements are ready… Read more »
Find all the Links on a Webpage with Selenium WebDriver in Java
3 minutes read Navigating through a webpage and cataloging every single link can be a daunting task, especially if you’re aiming for comprehensive testing coverage. Selenium WebDriver in Java offers a streamlined approach to not only find but also interact with these links, ensuring your web application behaves as expected. Let’s dive into the process, keeping things light… Read more »
How to MouseOver (Hover) a WebElement using Selenium WebDriver
2 minutes read Hovering over a web element, or what’s technically known as a MouseOver action, is a common user interaction on many web pages. It can reveal hidden menus, tooltips, or other elements that don’t appear until the user places their cursor over a specific element. Let’s dive into how you can simulate this action using Selenium… Read more »
Schedule Mobile Emulation to Run Continuously
< 1 minute read Why should I schedule a “Mobile Emulation” test to run every hour or every day? The answer is very simple: during the course of the development or even after the development is finished when changes are still done to the product is good to check how your application displays every day and put the running… Read more »