-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
UC Mode / CDP ModeUndetected Chromedriver Mode / CDP ModeUndetected Chromedriver Mode / CDP ModeduplicateThe answer/solution already exists somewhereThe answer/solution already exists somewhereworkaround existsYou can reach your destination if you do this...You can reach your destination if you do this...
Description
Hi,
my code is this:
from seleniumbase import Driver
driver = Driver(uc=True, headless2=True)
url = "https://www.amazon.com/"
driver.get(url)
I have SeleniumBase 4.31.6. I use MacOS 15.0 Sequoia with Intel and Chrome 130.0.6723.59.
This code sometimes gives me this error.
The error is also on MacOS with Apple Silicon and rosetta installed.
I've found that deleting uc=True solves the problem, so the following code works.
from seleniumbase import Driver
driver = Driver(headless2=True)
url = "https://www.amazon.com/"
driver.get(url)
Could it be a bug? How can I use UC Mode on MacOS without problems?
Thanks :)
**UPDATE:
i updated my chrome on windows and i have same problem also on Windows**
Metadata
Metadata
Assignees
Labels
UC Mode / CDP ModeUndetected Chromedriver Mode / CDP ModeUndetected Chromedriver Mode / CDP ModeduplicateThe answer/solution already exists somewhereThe answer/solution already exists somewhereworkaround existsYou can reach your destination if you do this...You can reach your destination if you do this...
