我在将代理添加到firefox硒浏览器时遇到问题。 我使用下面的代码,并更改都从proxy-list.download获得的HTTP ip和端口号。当我执行该程序并转到whatmyip.org时,它显示了我最近的没有代理的IP。
我已经尝试了多个stackoverflow线程,但是没有一个对我有帮助。 信息:使用Geckodriver,Python和Selenium的Firefox 66.0.1(64位)
from selenium import webdriver
from selenium.webdriver.common.proxy import Proxy, ProxyType
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", "1.20.217.221")
profile.set_preference("network.proxy.http_port", 8080)
profile.update_preferences()
driver = webdriver.Firefox(firefox_profile=profile)
driver.get("https://www.whatsmyip.org/")