2016-01-12 70 views
0

我有以下代碼:硒 - 芯Java錯誤

public static void main(String[] args) { 
    WebDriver wd = new FirefoxDriver(); 
    wd.get("https://www.wordpress.com/"); 
} 

沒有與此編譯時錯誤,但只要打開Mozilla的,它說:「此連接不可信」。我希望打開我在代碼中指定的網址。 「主」 顯示java.lang.NullPointerException \t在selePackage.Demo 異常螺紋 - :

回答

0

打開Firefox司機這樣的 -

ProfilesIni allProfiles = new ProfilesIni(); 
System.setProperty("webdriver.firefox.profile","your custom firefox profile name"); 
String browserProfile = stem.getProperty("webdriver.firefox.profile"); 
FirefoxProfile profile = allProfiles.getProfile(browserProfile); 
profile.setAcceptUntrustedCertificates (true); 
webdriver = new FirefoxDriver(profile); 
+0

有了這個代碼,我得到一個運行時錯誤,如下所示。 main(Demo.java:33) –

+0

哪一行是第33行? –

+0

33行是:myProfile.setAcceptUntrustedCertificates(true); –