Trying to find a way to install a specific SSL certificate in Firefox with Selenium using Python WebDriver and FirefoxProfile. We need to use our own private certificate, which is stored on a computer with WebDriver, so the ideal solution would look like this:
profile = get_my_profile() profile.importCertificate('/my/certificates/my_cert.cert') driver = new webdriver.Firefox(profile=profile)
How can i achieve this?
Many thanks!
source share