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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use Selenium Remote Control to launch the running of your tests from the command line.
Save your test from the IDE in a Test Suite
Run your test suite from the command-line with the following syntax.
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.