How to run test cases repeatedly?

How to run test cases repeatedly ?

Br Enes

You can use loop statement and call the same test case, e.g this will repeat the same test case 3 times:
for (i = 0; i <3; i++) {
WebUI.callTestCase('your/test/case')
}

1 Like

Thanks Vinh Nguyen. your solution worked for me.