使用 WebDriver 处理不受信任的 SSL 证书
我在使用 Java 中的 Web 驱动程序处理 UntrustedSSL 证书时遇到了困难。
我创建了 Firefox 配置文件,如下所示:
FirefoxProfile profile = new FirefoxProfile();
profile.setAcceptUntrustedCertificates(true);
profile.setAssumeUntrustedCertificateIssuer(false);
我创建了 Firefox 配置文件,添加了覆盖的证书。
这不处理 SSL 证书。
还有其他方法可以处理 UntrustedSSL 证书吗?
I got stuck in handling UntrustedSSLcertificates using web driver in Java.
I created firefox profile like:
FirefoxProfile profile = new FirefoxProfile();
profile.setAcceptUntrustedCertificates(true);
profile.setAssumeUntrustedCertificateIssuer(false);
I created firefox profile, added overridden certificate.
This is not handling SSL certificates.
Is there any other way to handle UntrustedSSLcertificates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
//URL 为 www.google.com 的 Firefox 示例
//Firefox example with URL www.google.com
最终我找到了 Untrusted SSLCertificates 的解决方案:
Eventually I found solution for Untrusted SSLCertificates: