我已尝试使用以下代码段打开具有双代理的浏览器,但它无效,单个代理也正常工作。
有没有办法找出双代理设置/配置?
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");