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

How To Generate And Insert Log In Selenium Webdriver Using log4j Jar

Assume you have prepared test case for your software web application test scenario (using selenium webdriver with eclipse and junit) and now you wants generate log file to insert your execution time log messages in to it. How you will do it? Selenium webdriver software testing tool don’t have any built in function or method to … Read more