Webdriver and proxy server for firefox

后端 未结 13 2366
清歌不尽
清歌不尽 2020-11-30 23:49

are there any ways to set firefox\'s proxy settings? I found here information about FoxyProxy but when Selenium works, plugins are unactivated in window.

13条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-01 00:19

    The WebDriver API has been changed. The current snippet for setting the proxy is

    FirefoxProfile profile = new FirefoxProfile();
    profile.setPreference("network.proxy.http", "localhost");
    profile.setPreference("network.proxy.http_port", "3128");
    WebDriver driver = new FirefoxDriver(profile);
    

提交回复
热议问题