2016-10-02 75 views
0

,它不完成加載。當我連接代理與硒,當我連接代理與硒時,它不完成加載

public void startFireFoxWithProxy(String ip) { 
    //Create a new Firefox profile 
    FirefoxProfile ffprofile = new FirefoxProfile(); 
    //Then add the proxy setting to the Firefox profile we created 
    ffprofile.setPreference("network.proxy.http", ip); 
    ffprofile.setPreference("network.proxy.http_port", "3128"); 
    driver = new FirefoxDriver(ffprofile); 
} 

此連接後瀏覽器無法打開任何頁面。 它得到無盡的負載...

如果有人知道這個問題。 請讓我知道!

回答

0

試試這個代碼

ffprofile.setPreference("network.proxy.type",1); 
ffprofile.setPreference("network.proxy.http", ip); 
ffprofile.setPreference("network.proxy.http_port", port);