SSL certificate missing while using proxies in selenium

Joined
May 30, 2024
Messages
1
Reaction score
0
```options = {
'proxy': {
'http': 'http://username:password@IP:port',
'https': 'https://username:password@IP:port',
'no_proxy': 'localhost,127.0.0.1'
}
}

chrome_options = Options()
chrome_options.add_argument("--incognito")
driver = webdriver.Chrome(seleniumwire_options=options)

driver.get("")```

and the error is: [4216:5376:0530/074500.305:ERROR:cert_verify_proc_builtin.cc(1051)] CertVerifyProcBuiltin for accounts.google.com failed:----- Certificate i=1 (CN=Selenium Wire CA) -----ERROR: No matching issuer found

i have pyautogui workaround but its not as good tbh, i need something where i can run more instances
 
Back
Top