Parameterization/Data Driven Testing Of Selenium Webdriver Test Using Excel

Data parameterization in selenium or data driven test is must required thing of any software automation testing tool. If you can not perform data driven testing in any software automation tool then it is biggest drawback of that tool. Till now, Selenium webdriver software automation testing tool has not any built in structure or method to parameterize your … Read more

How To Enable/Disable Textbox In Selenium WebDriver On The Fly

We can know element’s enabled/disabled status very easily using isEnabled() method in selenium webdriver software test as described in THIS EXAMPLE POST. Now supposing you have a scenario where you wants to enable any disabled text box or disable any enabled text box during software test execution then how to do it? Webdriver do not have any built in method … Read more

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

How To Get/Extract All Links From Web Page Using Selenium WebDriver

As we all knows, Each and every software web application contains many number of different links/URLs. Some of them are redirecting to some page of same website and others are redirecting to any external software web application. One of my blog reader has requested the webdriver software test script example for extracting all these links from … Read more