-
Hi Michael, I wanted to ask if the arguments I've set in the Chromium ARG could cause any issues when using Selenium Base. Do you think they might interfere with its functionality? chromium_arg = '--blink-settings=imagesEnabled=false,--enable-quic,--enable-http2,--disable-background-timer-throttling,--disable-backgrounding-occluded-windows,--disable-renderer-backgrounding' and using this: with SB(is_mobile=True,headless2=True,browser='edge',chromium_arg=chromium_arg) as sb: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Looks like you're trying to set some args that have already been set by default, such as Setting the same arg twice may cause issues. Also, some args that you're trying to set will prevent UC Mode from working at all. UC Mode is only for Chrome (and may work with some other Chromium browsers), but it won't work on Edge. |
Beta Was this translation helpful? Give feedback.
Looks like you're trying to set some args that have already been set by default, such as
disable-backgrounding-occluded-windows
:SeleniumBase/seleniumbase/core/browser_launcher.py
Line 1844 in af3d954
Setting the same arg twice may cause issues.
Also, some args that you're trying to set will prevent UC Mode from working at all.
UC Mode is only for Chrome (and may work with some other Chromium browsers), but it won't work on Edge.
Mobile Mode will likely get you detected.
Headless mode will prevent
PyAutoGUI
from working, which is needed in some cases.