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
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,22 @@ Now you can start up the Grid Hub:
12
12
```bash
13
13
./grid-hub start
14
14
```
15
-
Now add a Grid Node to the Grid Hub:
15
+
Now you can add a Grid Node to the Grid Hub:
16
16
```bash
17
17
./grid-node start
18
18
```
19
19
(NOTE: If the Grid Node is not running on the same machine as the Grid Hub, update the address from the script.)
20
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.)
21
21
22
+
You can remove a Grid Node from the Grid Hub with:
23
+
```bash
24
+
./grid-node stop
25
+
```
26
+
You can stop the Grid Hub at anytime with:
27
+
```bash
28
+
./grid-hub stop
29
+
```
30
+
22
31
#### More detailed info about connecting to the Selenium Grid Hub can be found here:
0 commit comments