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 57df468 commit 5ba8284Copy full SHA for 5ba8284
seleniumbase/core/browser_launcher.py
@@ -2228,6 +2228,8 @@ def _set_chrome_options(
2228
chrome_options.add_argument("--wm-window-animations-disabled")
2229
chrome_options.add_argument("--enable-privacy-sandbox-ads-apis")
2230
chrome_options.add_argument("--disable-background-timer-throttling")
2231
+ # Prevent new tabs opened by Selenium from being blocked:
2232
+ chrome_options.add_argument("--disable-popup-blocking")
2233
# Skip remaining options that trigger anti-bot services
2234
return chrome_options
2235
chrome_options.add_argument("--test-type")
0 commit comments