2012-08-31 95 views
2

有沒有辦法使用代理設置打開網站google.com。 在我在下面的代碼中找到的論壇之一。 但是,當瀏覽器出現時,它需要默認的Firefox設置,即沒有代理。 它似乎運行不會工作。使用代理服務器設置打開一個網站-Javascript

我怎樣才能啓動使用設定財產

一個網站,我發現論壇之一: System.setProperty( 「proxySet」, 「真」) System.setProperty( 「http.proxyHost」 「MYPROXY」)

回答

0

假設你使用WebDriver2,你可以用合適的喜好創建FirefoxProfile:

FirefoxProfile profile = new FirefoxProfile(); 
profile.SetPreference("network.proxy.type", "1"); 
profile.SetPreference("network.proxy.http", "<proxy_ip>"); 
profile.SetPreference("network.proxy.http_port", "<proxy_port>"); 
FirefoxDriver = new FirefoxDriver(profile); 
相關問題