wkeeling / selenium-wire

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

Certification error #524

Closed haider11234 closed 2 years ago

haider11234 commented 2 years ago

I'm using Linux server and Seleniumwire on it The ca is correctly installed in google on Windows and working great but when i installed in google Linux it still gave not secure in browser

wkeeling commented 2 years ago

You can try installing the certificate on Linux using this command:

certutil -d sql:$HOME/.pki/nssdb -A -t TC -n "Selenium Wire" -i /path/to/ca.crt

Change /path/to/ca.crt to point to your certificate.

If you get an error about certutil not being found, you can first install with:

apt install libnss3-tools