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 2dcacc3 commit e533715Copy full SHA for e533715
seleniumbase/core/browser_launcher.py
@@ -696,6 +696,9 @@ def _set_chrome_options(
696
chrome_options.add_argument("--disable-gpu")
697
if IS_LINUX:
698
chrome_options.add_argument("--disable-dev-shm-usage")
699
+ if is_using_uc(undetectable, browser_name):
700
+ chrome_options.add_argument("--disable-application-cache")
701
+ chrome_options.add_argument("--disable-setuid-sandbox")
702
if chromium_arg:
703
# Can be a comma-separated list of Chromium args
704
chromium_arg_list = chromium_arg.split(",")
0 commit comments