Forum Discussion
AlexeyKolosov
Staff
16 years agoHi Andrei,
You can re-execute a test item if there were errors during its execution. Here is an example:
function Test() {
var ErrCount = Log.ErrCount;
...
// Your test's code
...
// If the execution log contains errors, re-execute the routine
if (Log.ErrCount > ErrCount) {
Test();
}
}