Reputation: 32440
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.
Upvotes: 1
Views: 3887
Reputation: 130
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
Upvotes: 1
Reputation: 8223
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.
Upvotes: 5