wkeeling / selenium-wire

Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.
MIT License
1.86k stars 241 forks source link

Your connection is not private #685

Open userxxx0 opened 1 year ago

userxxx0 commented 1 year ago
import seleniumwire.undetected_chromedriver as uc
driver = uc.Chrome()

image

userxxx0 commented 1 year ago

the problem is when using selenium-wire.undetected_chromedriver. even if you don't use a proxy, this error still pops up

senzacionale commented 1 year ago

any fix exists for this? I am also getting this error

martinkoehler commented 1 year ago

Using

options = uc.ChromeOptions()
options.accept_insecure_certs=True
driver = uc.Chrome(options=options)

works for me.

Ishogbon commented 11 months ago

What chrome and webdriver version are you using

martinkoehler commented 11 months ago

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

senzacionale commented 11 months ago

Using

options = uc.ChromeOptions()
options.accept_insecure_certs=True
driver = uc.Chrome(options=options)

works for me.

For me too