Search code examples
javaseleniumjarserver

how to run a selenium-server-standalone?


I'm trying to run selenium server, and get errors:

rond-macpro:selenium eladb$  java -Dwebdriver.chrome.driver=./chromedriver -r selenium-server-standalone-2.44.0.jar
Unrecognized option: -r
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

and without -r (what is it anyway?)

rond-macpro:selenium eladb$  java -Dwebdriver.chrome.driver=./chromedriver  selenium-server-standalone-2.44.0.jar
Error: Could not find or load main class selenium-server-standalone-2.44.0.jar

how should I start the server?

how do I set a non-default port to listen to?

These two posts: 1 2 - contradicts regarding the syntax. I think.


Solution

  • java -jar seleniumjar.jar -Dwebdriver.chrome.driver=./chromedriver 
    

    If you want to specifiy the port do

    java -jar seleniumjar.version.jar -Dwebdriver.chrome.driver=./chromedriver -port 4545
    

    As of 3.8.1, specifying the driver is no longer necessary:

    java -jar seleniumjar.jar