我已经进行了大量的搜索,但是有很多令人困惑的snippits非常相似。
我试图使用所需的功能,chrome_options,选项和一系列参数,但没有任何工作:(它无法设置代理。
例如(Chrome_options)
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy=https://' + proxy_ip_and_port)
chrome_options.add_argument('--proxy-auth=' + proxy_user_and_pass)
chrome_options.add_argument('--proxy-type=https')
browser = webdriver.Chrome("C:\drivers\chromedriver.exe")
另一个例子(选项)
options = Options()
options.add_argument('--proxy=https://' + proxy_ip_and_port)
options.add_argument('--proxy-auth=' + proxy_user_and_pass)
options.add_argument('--proxy-type=https')
browser = webdriver.Chrome("C:\drivers\chromedriver.exe", chrome_options=options)
我还使用--proxy-server
代替--proxy-auth
,--proxy-type
...等,即使格式为:'--proxy-server=http://' + proxy_user_and_pass + '@' + proxy_ip_and_port
另一个例子(DesiredCapabilities)
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
capabilities = dict(DesiredCapabilities.CHROME)
capabilities['proxy'] = {'proxyType': 'MANUAL',
'httpProxy': proxy_ip_and_port,
'ftpProxy': proxy_ip_and_port,
'sslProxy': proxy_ip_and_port,
'noProxy': '',
'class': "org.openqa.selenium.Proxy",
'autodetect': False}
capabilities['proxy']['socksUsername'] = proxy_user
capabilities['proxy']['socksPassword'] = proxy_pass
browser = webdriver.Chrome(executable_path="C:\drivers\chromedriver.exe", desired_capabilities=capabilities)
我也曾在Firefox中尝试过,但同样的问题也出现了,它使用普通IP浏览器。
答案 0 :(得分:0)
根据latest documentation(2020年7月),您将DesiredCapabilities
或FIREFOX
设置为CHROME
。
我已经在 Firefox 上对其进行了测试。之后,您可以检查浏览器的connection settings以验证代理设置正确。
from selenium import webdriver
PROXY = "<HOST>:<PORT>" # HOST can be IP or name
webdriver.DesiredCapabilities.FIREFOX['proxy'] = {
"httpProxy": PROXY,
"ftpProxy": PROXY,
"sslProxy": PROXY, # this is the https proxy
"proxyType": "MANUAL",
}
with webdriver.Firefox() as driver:
# Open URL
driver.get("https://selenium.dev")
proxy-dict本身记录在Selenium wiki中。您将在此处看到属性sslProxy
为 https 设置代理。
我还没有为 Chrome 测试过它。如果它不起作用,您可能会在Google的ChromeDriver documentation中找到线索。根据这一点,您还需要使用desired_capabilites
参数实例化webdriver(这实际上与您的示例非常相似,因此,相比经过验证的解决方案,现在更多的是猜测):
caps = webdriver.DesiredCapabilities.CHROME.copy()
caps['proxy'] = ... # like described above
driver = webdriver.Chrome(desired_capabilities=caps)
driver.get("https://selenium.dev")