Include/Exclude Only Selected Test Methods In Selenium WebDriver-TestNg Test Suite Using testng.xml

If you are using selenium webdriver with TestNg framework then you can easily run your selected test methods from selected classes. Supposing you have a two classes in your package and first class have three test methods and second class have five test methods. Now you wants to run only one test method from first class … Read more

Configure testng.xml In Eclipse For Selenium WebDriver To Run All Or Specific Package

TestNG is very useful and powerful framework for selenium webdriver. We need to configure our tests based on our requirements or test scenarios. We are going very slowly with TestNG framework to understand each and everything clearly with examples so that it can help you to configure your test in any king of situations. In my … Read more

testng.xml : Creating WebDriver Test Suite Using Classes From Different Packages

Now you are already aware about HOW TO CREATE testng.xml FILE to configure and run your webdriver test. The main reason behind popularity of TestNG framework for webdriver is we can configure our test as per our requirements. I have listed some Similarities/Differences between Junit and TestNG framework In THIS POST. In my previous post, We have … Read more

testng.xml : Creating Single Or Multiple Tests For Multiple Classes In WebDriver

As i have described in my previous post, We can configure our webdriver test or webdriver test suits for software testing project in testng.xml file. In my previous post, we have seen how to create testng.xml file to run single test class for software web application. Also If you don’t know how to create and … Read more