我一直在試圖訪問一個HTTPS URL和Selenium 2.0的HTMLUnitDriver
API,但是某種程度上,執行卡住了「This Connection is Untrusted」窗口,並且控件不能不會回來。以下是我試圖努力我得到了一些暗示從this thread後的代碼:獲取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");
我高度讚賞任何幫助,得到它的工作。
SOS SOS ... desp。需要一些幫助。 – 2011-12-21 11:32:14