selenium 添加代理ip方式总结

本文总结了使用Selenium的FirefoxDriver接入代理IP的方法,包括Basic Auth身份认证的四种策略:在FirefoxProfile中设置、添加authtoken、在URL中包含凭证,以及处理弹窗认证。同时介绍了如何在火狐浏览器中查看代理设置,并提供了相关参考资料。
摘要由CSDN通过智能技术生成

  最近在调研代理平台的质量,需要尝试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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值