selenium-wire
selenium-wire copied to clipboard
Your connection is not private
import seleniumwire.undetected_chromedriver as uc
driver = uc.Chrome()
the problem is when using selenium-wire.undetected_chromedriver. even if you don't use a proxy, this error still pops up
any fix exists for this? I am also getting this error
Using
options = uc.ChromeOptions()
options.accept_insecure_certs=True
driver = uc.Chrome(options=options)
works for me.
What chrome and webdriver version are you using
Google Chrome 114.0.5735.198 and latest version of undetected chromedriver (https://github.com/ultrafunkamsterdam/undetected-chromedriver). This downloads the webdriver version automatically. Hope this helps
Using
options = uc.ChromeOptions() options.accept_insecure_certs=True driver = uc.Chrome(options=options)
works for me.
For me too