How to run Selenium IDE test using Selenium Server
I have a couple of selenium ide saved files to run tests. In order to be able to run these tests through IE, I installed selenium server with iedriverserver.
I created a session but can only load the webdriverjs script. Is there an easy way to convert selenium ide scripts to a format that the selenium server can run?
Is there any other / easier way to run selenium ide tests for IE? Thank.
+3
source to share
1 answer
The files generated by the IDE can be run with the server.
java -jar "[path to Selenium server .lar file]" -htmlSuite * * [browser, see here ] "" [URL that the browser will navigate on startup] "[path to your HTML test case file, made in the IDE] "" [path to the HTML results file that the server will write] "
+1
source to share