I would like to create a script or a batch file on windows that automatically opens Selenium IDE (plugin) and opens and runs a test file.
views:
101answers:
2
Q:
is there any way to automatically run a test suite from within Selenium IDE upon opening firefox?
+3
A:
I would recommend Selenium RC for running automated Selenium tests. You can easily export tests from IDE into several languages supported by Selenium RC and then use an appropriate test framework. It is also possible to run IDE tests written in HTML through Selenium RC using the htmlSuite command line parameter.
Dave Hunt
2009-12-08 09:31:16
+1
A:
Try it!
Save the below commands in a batch file and schedule when you want. You can place it in start up to start your scripts when you start your system. C: CD \selenium-remote-control-1.0.1\selenium-server-1.0.1 java -jar selenium-server.jar -port 4444 java -jar selenium-server.jar -htmlSuite "*iehta" "http://www.testsite.com/" "C:\testsuite.html" "C:\Results.html" Pause
Vijay Prasath
2010-03-22 07:42:17