Skip to content

Commit 9d0af7c

Browse files
committed
Update the Selenium Grid ReadMe
1 parent 3fbca42 commit 9d0af7c

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

integrations/selenium_grid/ReadMe.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@ The Selenium Grid Hub allows you to distribute tests to run in parallel across m
44

55
### Running the Selenium Grid Hub
66

7-
You may need to download selenium-server-standalone-2.50.1.jar (or the latest version) separately. That file is not present with this repository to save space. You can download that file from here:
8-
* http://docs.seleniumhq.org/download/
9-
or here:
10-
* http://selenium-release.storage.googleapis.com/index.html?path=2.50/
11-
Once you have downloaded the jar file, put it in this folder (the "integrations/selenium_grid" folder).
7+
First, download the latest selenium-server-standalone jar file to this folder (integrations/selenium_grid):
8+
```bash
9+
./download_selenium
10+
```
11+
Now you can start up the Grid Hub:
12+
```bash
13+
./grid-hub start
14+
```
15+
Now add a Grid Node to the Grid Hub:
16+
```bash
17+
./grid-node start
18+
```
19+
(NOTE: If the Grid Node is not running on the same machine as the Grid Hub, update the address from the script.)
20+
You should be able to see the Grid Console up and running from here: [http://0.0.0.0:4444/grid/console](http://0.0.0.0:4444/grid/console) (NOTE: That's the address if you're running locally from localhost.)
1221

13-
More detailed info about connecting to the Selenium Grid Hub can be found here:
14-
* https://theintern.github.io/intern/#selenium-grid
15-
and here:
16-
* https://github.com/SeleniumHQ/selenium/wiki/Grid2
17-
For even more information, look here:
18-
* https://github.com/SeleniumHQ/selenium/wiki
22+
#### More detailed info about connecting to the Selenium Grid Hub can be found here:
23+
* [https://theintern.github.io/intern/#selenium-grid](https://theintern.github.io/intern/#selenium-grid)
24+
* [https://github.com/SeleniumHQ/selenium/wiki/Grid2](https://github.com/SeleniumHQ/selenium/wiki/Grid2)
25+
* [https://github.com/SeleniumHQ/selenium/wiki](https://github.com/SeleniumHQ/selenium/wiki/Grid2)

0 commit comments

Comments
 (0)