Steps Of Downloading And Installing Testng In Eclipse For WebDriver

To use TestNG Framework in Eclipse, First of all we have to install it. Installation of TestNG software testing framework in Eclipse is very easy process. As I described in my previous post, TestNG is very powerful and easy to use framework and it is supported by tools like Eclipse, Maven, IDEA, etc.. Here we are going to use … Read more

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