views:

535

answers:

2

I have recorded a very simple test case Using the Selenium IDE integrated with Firefox. I want the test case to run continuously over a period of time. How can I make the test run continuously?

A: 

Try the flowControl Selenium extension.

Ates Goral
+1  A: 

You can use Selenium Remote Control to launch the running of your tests from the command line.

  1. Save your test from the IDE in a Test Suite

  2. Run your test suite from the command-line with the following syntax.

  3. Use your favorite scripting language to script the re-running of your test over and over

An alternate approach would be to save your test from the IDE into a Test Suite, and then open the suite in a text editor and copy/paste the same tests hundreds/thousands of times. I've never tried it, but assuming the IDE doesn't choke on large Suite files, this would let you run the test X number of times again and again.

Alan Storm