How can we execute failed test cases in Selenium using TestNG
There are multiple ways to execute Failed test cases in Selenium using TestNG:
- 'testng-failed.xml'
- IRetryAnalyzer
testng-failed.xml
If any test case is failed, testng-failed.xml is generated in the reports output directory(Target directory). We can simply run above xml to rerun the failed test cases.
Location of testng-failed.xml
Running testng-failed.xml
In eclipse - Simply right click on xml file and run as testng
IRetryAnalyzer
TestNG has an Interface to implement to be able to have a chance to retry a failed test that is IRetryAnalyzer.
If you want TestNG to automatically retry a test whenever it fails. You can use a retry analyzer.
To retry a failed test you have bind retry analyzer to each test which you want to invoke on test failure.
How can we bind retry analyzer at Test Level
You can use retryAnalyzer attribute and assign it to implemented class of IRetryAnalyzer interface at test level. As shown below:@Test(retryAnalyzer = RetryAnalyzerImpl.class)
Complete implementation of IRetryAnalyzer class is shown below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.testng.IRetryAnalyzer; | |
import org.testng.ITestResult; | |
public class RetryAnalyzerImpl implements IRetryAnalyzer { | |
private int retryCount = 0; | |
private static final int maxRetryCount = 1; | |
@Override | |
public boolean retry(ITestResult result) { | |
if (retryCount < maxRetryCount) { | |
retryCount++; | |
return true; | |
} | |
return false; | |
} | |
} |
Sample Test class implementation is shown below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.testng.Assert; | |
import org.testng.annotations.Test; | |
public class RetryTest { | |
@Test(retryAnalyzer = RetryAnalyzerImpl.class) | |
public void firstTest() { | |
System.out.println("1"); | |
Assert.assertFalse(true); | |
} | |
@Test(retryAnalyzer = RetryAnalyzerImpl.class) | |
public void secondTest() { | |
System.out.println("2"); | |
} | |
} |
Setup RetryAnalyzer at Class/Suite Level
We can setRetryAnalyzer in setup method - @BeforeClass, @BeforeSuite instead of @Test as shown in RetryTest.java
Sample Test class implementation is shown below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.testng.Assert; | |
import org.testng.ITestContext; | |
import org.testng.ITestNGMethod; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
public class RetryTest { | |
@BeforeClass(alwaysRun = true) | |
public void beforeSuite(ITestContext context) { | |
for (ITestNGMethod method : context.getAllTestMethods()) { | |
method.setRetryAnalyzer(new RetryAnalyzerImpl()); | |
} | |
} | |
@Test | |
public void firstTest() { | |
System.out.println("1"); | |
Assert.assertFalse(true); | |
} | |
@Test | |
public void secondTest() { | |
System.out.println("2"); | |
} | |
} |