Last active
October 9, 2017 23:11
-
-
Save diemol/966d38ef02dc339046ac7ad69db0ef13 to your computer and use it in GitHub Desktop.
Start a Selenium Grid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar selenium-server-standalone-3.6.0.jar -role hub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar selenium-server-standalone-3.6.0.jar -role node \ | |
-hub http://localhost:4444/grid/register \ | |
-browser browserName=firefox,maxInstances=3 \ | |
-browser browserName=chrome,maxInstances=5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar selenium-server-standalone-3.6.0.jar -role node ^ | |
-hub http://localhost:4444/grid/register ^ | |
-browser browserName=firefox,maxInstances=3 ^ | |
-browser browserName=chrome,maxInstances=5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to install Geckodriver and Chromedriver
OSX/Linux
Check https://gist.github.com/diemol/635f450672b5bf80420d595ca0016d20
Windows
Chromedriver:
chromedriver_win32.zip
file, unzip it and make it available in your$PATH
.Geckodriver:
geckodriver-v0.19.0-win64.zip
file, unzip it and make it available in your$PATH
.Guide showing how to add the folder where Geckodriver and Chromedriver are to the
$PATH
-> here