unit testing - How do I continuously run a single test case using Selenium? -


I have filed a very simple test case, using the Selenium IDE integrated with Firefox. I want the test case to run continuously from time to time. How can I continue testing?

You can use the command line to run with your tests.

  1. Save your test with the IDE in a test suite

  2. Run your trial suite from the command-line.

    >
  3. Resume your test using your favorite scripting language and

save an alternative approach Have your test in the test suite from IDE, and then open the suit in a text editor and copy the same test hundreds / thousands of times. I've never tried to do this, but the IDE is not messy on big suite files to handle, it will allow you to run Test X numbers again and again.


Comments