Forum Discussion
AlexeyKolosov
14 years agoStaff
Hi Mike,
You can't change test items execution order during test run, however, the functionality you need can be achieved via scripting. For example:
var testNeeded = false;
do
{
try
{
test1();
}
catch(e)
{
testNeeded = true;
restoreApp();
continue;
}
try
{
test2();
}
catch(e)
{
testNeeded = true;
restoreApp();
continue;
}
...
}
while (testNeeded)
Related Content
- 5 years ago
- 6 years ago
Recent Discussions
- 7 hours ago