selenium-wire icon indicating copy to clipboard operation
selenium-wire copied to clipboard

Your connection is not private

Open userxxx0 opened this issue 1 year ago • 6 comments

import seleniumwire.undetected_chromedriver as uc
driver = uc.Chrome()

image

userxxx0 avatar Jun 19 '23 07:06 userxxx0

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

userxxx0 avatar Jun 19 '23 07:06 userxxx0

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

senzacionale avatar Jun 29 '23 16:06 senzacionale

Using

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

works for me.

martinkoehler avatar Jul 01 '23 14:07 martinkoehler

What chrome and webdriver version are you using

Ishogbon avatar Jul 23 '23 17:07 Ishogbon

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

martinkoehler avatar Jul 23 '23 17:07 martinkoehler

Using

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

works for me.

For me too

senzacionale avatar Jul 24 '23 07:07 senzacionale