I\'ve been testing in Selenium IDE. It\'s pretty easy to use, and I have created some test cases with it. I\'ve been searching Google, trying to find a way to repeat my test
Your test suite file is just an HTML file, so just do the following:
<tr><td><a href="testCase1.html">testCase1</a></td></tr>
<tr><td><a href="sameStep.html">sameStep</a></td></tr>
<tr><td><a href="testCase2.html">testCase1</a></td></tr>
<tr><td><a href="sameStep.html">sameStep</a></td></tr>
No need to install/download anything, the built-in times command does this very easily:
times
as its Command
and 10
(for instance) as its Target
.end
as its commandIn this example I click on a button 2000 times:
To loop forever, just replace 10
with an extremely large number, that will take centuries to execute, which probably is as good as forever if you are running Selenium IDE.