テストのためにSeleniumを使用してページを読み込もうとしていますが、このjavax.net.ssl.SSLPeerUnverifiedException:ピアが認証されていないというエラーが発生し続けます。今、私はそれを許可する多くの異なる方法を試しましたが、それは単に機能しません!
WebDriver driver = new HtmlUnitDriver(){
protected WebClient modifyWebClient(WebClient client){
try {
client = new WebClient(BrowserVersion.FIREFOX_3_6);
client.setUseInsecureSSL(true);
client.setUseInsecureSSL(true);
client.setThrowExceptionOnScriptError( false );
client.setPrintContentOnFailingStatusCode( true );
client.setThrowExceptionOnFailingStatusCode( true );
client.setCssEnabled( true );
client.setJavaScriptEnabled( true );
XTrustProvider.install(); // Allow all certs
SSLUtilities.trustAllHostnames();// to turn off the default hostname verification on HTTPS connection;
SSLUtilities.trustAllHttpsCertificates();// to turn off the default certificate validation on HTTPS
} catch (GeneralSecurityException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return client;
}
} ;
誰か提案がありますか?