17

如何将 Selenium 在 Python 中启动的 Firefox 的流量重定向到代理?我使用了网上建议的解决方案,但它们不起作用!

我努力了:

profile = webdriver.FirefoxProfile() 
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", "54.213.66.208")
profile.set_preference("network.proxy.http_port", 80)
profile.update_preferences() 
driver = webdriver.Firefox(profile)
4

3 回答 3

21

您需要导入以下内容:

from selenium.webdriver.common.proxy import Proxy, ProxyType

然后设置代理:

myProxy = "xx.xx.xx.xx:xxxx"

proxy = Proxy({
    'proxyType': ProxyType.MANUAL,
    'httpProxy': myProxy,
    'ftpProxy': myProxy,
    'sslProxy': myProxy,
    'noProxy': '' # set this value as desired
    })

然后调用webdriver.Firefox()函数如下:

driver = webdriver.Firefox(proxy=proxy)
driver.get("http://www.google.com")

不记得我到底在哪里找到了这个解决方案,但它就在某个地方。如果我再次找到它,肯定会提供一个链接。刚刚从我的代码中取出了这一部分。

于 2014-01-31T00:36:38.637 回答
16

试试这个火狐/壁虎驱动程序:

proxy = "212.66.117.168:41258"

firefox_capabilities = webdriver.DesiredCapabilities.FIREFOX
firefox_capabilities['marionette'] = True

firefox_capabilities['proxy'] = {
    "proxyType": "MANUAL",
    "httpProxy": proxy,
    "ftpProxy": proxy,
    "sslProxy": proxy
}

driver = webdriver.Firefox(capabilities=firefox_capabilities)

对于 Chrome,您可以使用:

proxy = "212.66.117.168:41258"
prox = Proxy()
prox.proxy_type = ProxyType.MANUAL
prox.http_proxy = proxy
prox.socks_proxy = proxy
prox.ssl_proxy = proxy

capabilities = webdriver.DesiredCapabilities.CHROME
prox.add_to_capabilities(capabilities)
driver = webdriver.Chrome(desired_capabilities=capabilities)
于 2019-07-17T21:11:18.997 回答
6

您的问题出在驱动程序初始化上。尝试webdriver = webdriver.Firefox(firefox_profile=profile)所有其他代码都可以,您也可以删除profile.update_preferences()行。

我用 2 分钟的谷歌搜索找到了您的解决方案。你花了多少时间等待?:D

您的问题是您可能从 Python 之外的其他语言中读取代码。将此替换webdriver.Firefox(profile)webdriver.Firefox(firefox_profile=profile).

您的代码应该是:

profile = webdriver.FirefoxProfile() 
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", "54.213.66.208")
profile.set_preference("network.proxy.http_port", 80)
profile.update_preferences() 
driver = webdriver.Firefox(firefox_profile=profile)
于 2015-06-27T07:19:16.610 回答