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.
2 parents 2dcacc3 + c619838 commit 2400757Copy full SHA for 2400757
seleniumbase/__version__.py
@@ -1,2 +1,2 @@
1
# seleniumbase package
2
-__version__ = "4.13.1"
+__version__ = "4.13.2"
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