Use Of isMultiple() And deselectAll() In Selenium WebDriver With Example

isMultiple() method is used to identify if you can select multiple options from a select element. deselectAll() method is used to deselect all selections from a select element. Now you can easily select or deselect any specific option from the select box or drop down as described in my earlier POST 1, POST 2 and POST … Read more

How To Deselect Option By Visible Text Or Value Or By Index In Selenium WebDriver With Example

Adding selection or removing selection from list box are very common actions for list box. Selenium WebDriver has 3 alternate options to select or deselect value from list box. It is very important to learn all three methods of selecting or deselecting option from list box because if one is not possible to implement in your … Read more

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