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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-24
  • 2021-05-25
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2021-06-04
猜你喜欢
  • 2021-07-27
  • 2022-02-21
  • 2021-08-10
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
相关资源
相似解决方案