selenium-webdriver不适用于双代理

时间:2016-07-27 07:22:36

标签: selenium-webdriver

我已尝试使用以下代码段打开具有双代理的浏览器,但它无效,单个代理也正常工作。

有没有办法找出双代理设置/配置?

    FirefoxProfile profile = new FirefoxProfile();
    profile.setPreference("network.proxy.type", 1);
    //profile.setPreference("network.proxy.http", "firstproxy");
    //profile.setPreference("network.proxy.http_port", port_firstproxy);
    profile.setPreference("network.proxy.http", "secondproxy");
    profile.setPreference("network.proxy.http_port", port_secondproxy);
    profile.setEnableNativeEvents(true);
    profile.setPreference("intl.accept_languages", "en-us, en");
    profile.setPreference("browser.download.folderList", 2);
    WebDriver driver = new FirefoxDriver(profile);
    driver.get("url");

0 个答案:

没有答案