尝试使用 Python WebDriver 和 FirefoxProfile 找到一种在带有 Selenium 的 Firefox 中安装特定 SSL 证书的方法。我们需要使用我们自己的自定义证书,该证书存储在运行 WebDriver 的计算机中,因此理想的解决方案如下所示:
profile = get_my_profile()
profile.importCertificate('/my/certificates/my_cert.cert')
driver = new webdriver.Firefox(profile=profile)
我怎样才能做到这一点?
非常感谢!