Example of Handling Multiple Browser Windows in Selenium WebDriver

Selenium WebDriver software testing tool has built in “WebDriver.switchTo().window()” method available to switch from one window to another window so it is very easy to handle multiple windows in webdriver. If you remember, We can use “selectWindow” window command in selenium IDE software testing tool to select another window. If window do not have any title or both … Read more

Selenium WebDriver : Generating Mouse Hover Event On Main Menu To Click On Sub Menu

Selenium WebDriver is totally freeware software testing tool and we can use it for software web application regression purpose. Hovering mouse on main menu or any other element of web page or simulating mouse movement in webdriver is not very tough task. As you know, We can perform most of actions and operations directly in … Read more

Selenium Webdriver Tutorial To Capture Screenshot With Example

Capturing screenshot of software web application page is very easy in selenium webdriver. As we knows, It is very basic required thing in software automation tools to capture screenshot on test case failure or whenever required during test case execution. VIEW MORE SELENIUM WEBDRIVER BASIC COMMANDS for your webdriver knowledge improvement and use them in your … Read more

Selenium WebDriver : Difference Between findElement and findElements with example

We have seen many examples of webdriver’s findElement() in my previous posts. You will find syntax of findElement() with example on THIS PAGE if you wants to use it in your software web application test case. Selenium WebDriver software testing tool has one more related method findElements. Now main question is what is the difference between findElement and findElements methods in … Read more