This question is kinda hard to google out, so I thought I would ask here.

I am using selenium webdriver, in java with testng to run an X amount of test cases.

What I would like, is for any test case to automatically restart (either from starting or from point of failure), as soon as it fails.

I know testng framework has the following method

@Override
  public void onTestFailure(ITestResult tr) {
    log("F");
  }

but I do not know how to find out which testcase it was and then how would I restart it.

Many thanks.

link|improve this question

50% accept rate
feedback

1 Answer

From testng.org

Every time tests fail in a suite, TestNG creates a file called testng-failed.xml in the output directory. This XML file contains the necessary information to rerun only these methods that failed, allowing you to quickly reproduce the failures without having to run the entirety of your tests.

If you want to rerun the test exactly after the failure you need to call the method that failed. You can get that method name from ITestResult object.

If you want to rerun all the failed test cases together, then you can give the testng-failed.xml as input xml after the first execution.

link|improve this answer
I would like to run them as just as they failed. Ok so I have the failed test and its named, how would I restart the test? – Waqas Khan Jan 4 at 9:43
never mind..i got it..cheers – Waqas Khan Jan 4 at 15:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.