最近在调研代理平台的质量,需要尝试selenium接入代理,所以对收集的资料进行总结. selemiun使用java开发,浏览器使用firefoxdriver.
FirefoxDriver使用
String proxyIp = "1.1.1.11"; //代理ip,具体对应实际ip
int proxyPort = 9020; //代理ip端口
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.type", 1);
profile.setPreference("network.proxy.http", proxyIp);
profile.setPreference("network.proxy.http_port", proxyPort);
profile.setPreference("network.proxy.ssl", proxyIp);
profile.setPreference("network.proxy.ssl_port", proxyPort);
profile