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