Introduction Of TestNG – Unit Testing Framework For Selenium WebDriver

TestNG is unit testing framework and it has been most popular in very sort time among java software developers and selenium webdriver software automation test engineers. I can say, TestNG has not only most of all the features of JUnit but also many more advanced features in terms of selenium webdriver testing framework. Basically, TestNG’s software … Read more

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

Selenium IDE “assertSelectedLabels” and “assertSelectedValues” Commands With Examples

First of all please look at THIS POST where I have described difference between label and value in drop down or list box. Don’t get confused from these two words. Selenium IDE has many assertion commands and all of them are designed for different purpose. Here i am going to describe you “assertSelectedLabels” and “assertSelectedValues” commands … Read more