HTMLUnitDriver
APIのSelenium 2.0でHTTPS URLにアクセスしようとしましたが、「この接続は信頼できません」ウィンドウで何とか実行が停止し、戻りません。HTMLUnitDriverが信頼できない証明書の検証(Selenium 2.0)をバイパスする
WebDriver driver = new HtmlUnitDriver() {
protected WebClient modifyWebClient(final WebClient client) {
try {
client.setUseInsecureSSL(true);
} catch (GeneralSecurityException e) {
e.printStackTrace();
}
return client;
}
};
driver.get("https://172.25.194.91:8443/meta/homeScreen.do");
私は非常にそれが仕事を得るために、任意の助けをいただければと思います。以下は、私はthis threadからいくつかのヒントを得た後、私が取り組んでしようとしているコードです。
SOS SOS ... desp。助けを必要としている。 –