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 c167a23 commit a6c0493Copy full SHA for a6c0493
1 file changed
seleniumbase/core/browser_launcher.py
@@ -2651,6 +2651,13 @@ def get_driver(
2651
if headless2 and browser_name == constants.Browser.FIREFOX:
2652
headless2 = False # Only for Chromium
2653
headless = True
2654
+ if (
2655
+ is_using_uc(undetectable, browser_name)
2656
+ and binary_location
2657
+ and isinstance(binary_location, str)
2658
+ and binary_location.lower() == "chs"
2659
+ ):
2660
+ raise Exception("UC Mode can't be used with Chrome-Headless-Shell!")
2661
if (
2662
binary_location
2663
and isinstance(binary_location, str)
0 commit comments