Selenium Webdriver 动态设置 Proxy

Posted 水舟陆车

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium Webdriver 动态设置 Proxy相关的知识,希望对你有一定的参考价值。

Step 1: Visiting "about:config"

driver.get("about:config");

Step 2 : Run script that changes proxy

var setupScript=`var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
prefs.setIntPref("network.proxy.type", 1);
prefs.setCharPref("network.proxy.http", "${proxyUsed.host}");
prefs.setIntPref("network.proxy.http_port", "${proxyUsed.port}");
prefs.setCharPref("network.proxy.ssl", "${proxyUsed.host}");
prefs.setIntPref("network.proxy.ssl_port", "${proxyUsed.port}");
prefs.setCharPref("network.proxy.ftp", "${proxyUsed.host}");
prefs.setIntPref("network.proxy.ftp_port", "${proxyUsed.port}");
//running script below  
driver.executeScript(setupScript);
//sleep for 1 sec
driver.sleep(1000);

Step 3: : Visit your site

driver.get("https://whatismyip.com");

 

参考:https://stackoverflow.com/questions/29776607/python-selenium-webdriver-changing-proxy-settings-on-the-fly

以上是关于Selenium Webdriver 动态设置 Proxy的主要内容,如果未能解决你的问题,请参考以下文章

虫师Selenium2+Python_4webdriver API

python爬虫动态html selenium.webdriver

如何使用 selenium webdriver 查找动态元素?

无法使用 selenium webdriver 选择表格行,因为 div 类正在动态变化

python爬虫14--Selenium动态渲染页面抓取

selenium webdriver设置超时