Open bharatbots opened 1 year ago
Please download the Chromedriver first and then set the pre-downloaded chromedriver path in the driver_executable_path
when creating the Chrome instance like so:
driver = Chrome(driver_executable_path=/path/to/chromedriver, options=options)
Then, it will start working fine.
I'm running multiple instances with ThreadPoolExecutor and I randomly get this error and the entire program crashes.
I'm on MacOS and using the latest version of
UC
and Selenium. I also gave a try to@fix-multiple-instance
but it didn't work. I ran it on Windows, Linux etc and I got the same error everywhere.Full traceback:
Not sure if it matters but i'm also using different user-data-dirs for all drivers. I run around 5-6 drivers at the same time. I don't exceed my CPU core limit. I have tried many things suggested from similar issues here but nothing worked.
Heck I event went back to 3.2.0 and it didn't work either. I don't know what to do. Do i need to pre-download uc chromedriver and then put a separate driver path for each uc.Chrome instance?