SeleniumBase
SeleniumBase copied to clipboard
Problem with UC Mode
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**