我在Java中使用Web驱动程序处理UntrustedSSLcertificates时遇到困难.
我创建了firefox配置文件:
FirefoxProfile profile = new FirefoxProfile();
profile.setAcceptUntrustedCertificates(true);
profile.setAssumeUntrustedCertificateIssuer(false);
Run Code Online (Sandbox Code Playgroud)
我创建了firefox配置文件,添加了覆盖证书.
这不是处理SSL证书.
有没有其他方法来处理UntrustedSSLcertificates?