ContributionsMost RecentMost LikesSolutionsRe: ReExecution Status is not getting Updated from test suite teardown Is there any other way to achieve?? Re: ReExecution Status is not getting Updated from test suite teardown Hi Lucian, Following is the code to re-execute the failure test cases, for ( testCaseResult in runner.results ) { testCaseName = testCaseResult.getTestCase().name if ( testCaseResult.getStatus().toString() == "FAILED" ) { testCaseResult.testCase.run(null, false) } } Thank You!! ReExecution Status is not getting Updated from test suite teardown Hi Team, Greetings!! I am running a test suite and in the tear down script am re-executing the failure test cases. The issue is ,I am able to re-execute the failed test cases but the status of the test case are not getting updated even though testcase got passed on Re-Execution. Please help me out in this how to update status of the failure testcase Thank You!!