Skip to content

Commit fcb79a3

Browse files
committed
Update default Selenium Grid timeout settings
1 parent ee51970 commit fcb79a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

seleniumbase/utilities/selenium_grid/grid-hub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if [ "$GRID_HUB_VERBOSE_LOGS" == "True" ]; then
3434
fi
3535

3636
WEBDRIVER_SERVER_JAR=${DIR}/selenium-server-standalone.jar
37-
WEBDRIVER_HUB_PARAMS="-role hub -timeout 180 -browserTimeout 75 -port 4444"
37+
WEBDRIVER_HUB_PARAMS="-role hub -timeout 230 -browserTimeout 170 -port 4444"
3838
WEBDRIVER_HUB_PIDFILE="/tmp/webdriver_hub.pid"
3939

4040
if [ ! -f $WEBDRIVER_SERVER_JAR ]; then

seleniumbase/utilities/selenium_grid/grid_hub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def main():
8181
if grid_hub_command == "start" or grid_hub_command == "restart":
8282
shell_command = (
8383
"""java -jar %s/selenium-server-standalone.jar -role hub """
84-
"""-timeout 180 -browserTimeout 75 -port 4444""" % dir_path)
84+
"""-timeout 230 -browserTimeout 170 -port 4444""" % dir_path)
8585
print("\nStarting Selenium-WebDriver Grid Hub...\n")
8686
print(shell_command)
8787
print("")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
java -jar selenium-server-standalone.jar -role hub -timeout 180 -browserTimeout 75 -port 4444
1+
java -jar selenium-server-standalone.jar -role hub -timeout 230 -browserTimeout 170 -port 4444
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
java -jar selenium-server-standalone.jar -role hub -timeout 180 -browserTimeout 75 -port 4444
2+
java -jar selenium-server-standalone.jar -role hub -timeout 230 -browserTimeout 170 -port 4444

0 commit comments

Comments
 (0)