Skip to content

Commit bb872b8

Browse files
committed
Try increasing default timeout
1 parent bdd1898 commit bb872b8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

python/scripts/run_emscripten_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ def __init__(self, hostname, port):
261261
options = Options()
262262
options.add_argument("--headless")
263263
options.add_argument("--no-sandbox")
264-
super().__init__(hostname, port, webdriver.Chrome(options=options))
264+
driver = webdriver.Chrome(options=options)
265+
driver.command_executor._client_config.timeout = 300
266+
super().__init__(hostname, port, driver)
265267

266268

267269
class FirefoxDriver(BrowserDriver):

0 commit comments

Comments
 (0)