I try to use undetected-chromedriver with a sample example (I also checked the example in github).I use chromedriver v110 This code give doesn't work with uc but with selenium it works:
import undetected_chromedriver as uc
driver = uc.Chrome()
driver.get("https://www.selenium.dev/selenium/web/web-form.html")
title = driver.title
print(title)
It returns this error :
urllib.error.URLError: <urlopen error [Errno 11001] getaddrinfo failed>
Do you have ideas why ?