How To Ignore Test In WebDriver With JUnit

As described in my previous post, We can create junit test suite to execute multiple test cases from one place. See example of my previous post. junittest2 class have two @Test methods. Now If I wants to exclude/Ignore 1st @Test method from execution and wants to execute only 2nd @Test method then how can I do It? … Read more

How To Create And Run JUnit Test Suit For WebDriver Test – Step By Step

If you are planning to perform regression testing of any software web application using webdriver software testing then obviously there will be multiple test cases or test classes under your webdriver project. Example – There are 2 junit test cases of software web application under your project’s package. Now if you wants to run both of … Read more

Generate webdriver test report in HTML by running build xml file : Part – 3

We have seen how to configure system and eclipse in configuration part 1 and configuration part 2 posts to generate Selenium webdriver HTML test report. Now we have a test case and build.xml file in our project tree. Let me describe you few steps of configuring and running build.xml file in eclipse. Now follow the bellow … Read more

System Configuration Steps To Generate webdriver test execution report using JUnit : Part -1

Many people facing issues in JUnit report generation configuration using ant and eclipse. If every thing is not setup properly then it will give you one or another error and you will be not able to generate JUnit software test case execution report for your webdriver test case. Let me describe you few system configuration … Read more