You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integrations/selenium_grid/ReadMe.md
+18-11Lines changed: 18 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,22 @@ The Selenium Grid Hub allows you to distribute tests to run in parallel across m
4
4
5
5
### Running the Selenium Grid Hub
6
6
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:
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.)
12
21
13
-
More detailed info about connecting to the Selenium Grid Hub can be found here:
0 commit comments