Created
April 24, 2015 16:53
-
-
Save ddavison/e813e25fa02b1f6ac521 to your computer and use it in GitHub Desktop.
Minimal setup for Selenium Grid
This file contains hidden or 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
| # Open 2 terminals. | |
| # TERMINAL 1: | |
| $ cd /path/to/selenium | |
| $ ls | |
| selenium-server-standalone.jar | |
| $ java -jar selenium-server-standalone.jar -role hub | |
| # TERMINAL 2: | |
| $ cd /path/to/selenium | |
| $ ls | |
| selenium-server-standalone.jar | |
| $ java -jar selenium-server-standalone.jar -role node -hub http://localhost:4444/grid/register |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment