Skip to content

Instantly share code, notes, and snippets.

@rajucs
Created November 24, 2018 18:40
Show Gist options
  • Save rajucs/dee58b22648028eb502f8be8c1423965 to your computer and use it in GitHub Desktop.
Save rajucs/dee58b22648028eb502f8be8c1423965 to your computer and use it in GitHub Desktop.
Installing Selenium Server
Setup
Download and install Java for your platform
Download selenium server’s latest version from
Place the downloaded .jar file to a folder of your choice, commonly C:\selenium
Create a batch file to run the server and add file to start up
To run server use java –jar selenium-server-standalone-2.25.0.jar
to create the batch file:
1) open notepad or any text-editor of your choice;
2) write the following in the file (supposing the .jar file is in C:\selenium folder):
cd C:\selenium
java -jar selenium-server-standalone-3.12.0.jar
pause
3) save the file as (for example): selenium.bat
4) drag the file selenium.bat to startup
5) now any time you need to launch the server just click selenium.bat in the startup menu!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment