We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a9f189 commit c277251Copy full SHA for c277251
repro.py
@@ -23,6 +23,8 @@ def setUpClass(cls):
23
chrome_opts.add_argument('--headless')
24
chrome_opts.add_argument('--disable-gpu')
25
chrome_opts.add_argument('--verbose')
26
+ # Suggested in https://issues.chromium.org/issues/42323434#comment63
27
+ chrome_opts.add_experimental_option('browserStartupTimeout', 1000000)
28
cls.selenium = WebDriver(options=chrome_opts, service=Service(executable_path=chromedriver_binary, service_args=['--verbose']))
29
cls.selenium.implicitly_wait(10)
30
0 commit comments