SeleniumBase icon indicating copy to clipboard operation
SeleniumBase copied to clipboard

Problem with UC Mode

Open thomvas opened this issue 1 year ago • 1 comments

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.

2024-10-19_15-02

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**

thomvas avatar Oct 19 '24 13:10 thomvas