ultrafunkamsterdam / undetected-chromedriver

Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)

Home Page:https://github.com/UltrafunkAmsterdam/undetected-chromedriver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This version of ChromeDriver only supports Chrome version 125 Current browser version is 124.0.6367.29

devensonas opened this issue · comments

Good day,

I tried different variation but can't find way to run newest undetected-chromedriver with custom browser:


chrome at 127.0.0.1:52183
from session not created: This version of ChromeDriver only supports Chrome version 125 
Current browser version is 124.0.6367.29

please help me with Python code to run my scripts on different browsers.

Add the following to the top of your script

from webdriver_manager.chrome import ChromeDriverManager
driver_executable_path = ChromeDriverManager().install()

make sure to install webdriver-manager using pip

And pass the driver_executable_path to the Chrome initiation

driver = uc.Chrome(version_main=124) should also do the trick, at least for the current version.