We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7df7f7 commit 119bedcCopy full SHA for 119bedc
seleniumbase/core/browser_launcher.py
@@ -242,6 +242,8 @@ def _set_chrome_options(
242
chrome_options.add_argument("--dom-automation")
243
chrome_options.add_argument("--disable-hang-monitor")
244
chrome_options.add_argument("--disable-prompt-on-repost")
245
+ if servername != "localhost":
246
+ use_auto_ext = True # Use Automation Extension with the Selenium Grid
247
if not use_auto_ext: # (It's ON by default. Disable it when not wanted.)
248
chrome_options.add_experimental_option("useAutomationExtension", False)
249
if (settings.DISABLE_CSP_ON_CHROME or disable_csp) and not headless:
0 commit comments