gpt4 book ai didi

python - 使用 Python 使用 Selenium 设置 chromedriver 代理身份验证

转载 作者:太空狗 更新时间:2023-10-29 20:31:15 26 4
gpt4 key购买 nike

我正在使用 Python 和 Selenium 库编写测试套件。使用 chromedriver,我设置代理使用:

chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % hostname + ":" + port)
global driver
driver = webdriver.Chrome(chrome_options=chrome_options)

当代理没有身份验证时,这可以正常工作。但是,如果代理要求您使用用户名和密码登录,它将不起作用。使用 add_argument 或其他方法将代理身份验证信息传递给 chromedriver 的正确方法是什么?

它不同于:How to set Proxy setting for Chrome in Selenium Java

视作:

  1. 它是一种不同的语言
  2. 它是 firefox,不是 chrome。
  3. --代理服务器= http://user:password@proxy.com:8080不起作用。

最佳答案

使用DesiredCapabilities。我已经成功地使用以下代理身份验证:

from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities

proxy = {'address': '123.123.123.123:2345',
'username': 'johnsmith123',
'password': 'iliketurtles'}


capabilities = dict(DesiredCapabilities.CHROME)
capabilities['proxy'] = {'proxyType': 'MANUAL',
'httpProxy': proxy['address'],
'ftpProxy': proxy['address'],
'sslProxy': proxy['address'],
'noProxy': '',
'class': "org.openqa.selenium.Proxy",
'autodetect': False}

capabilities['proxy']['socksUsername'] = proxy['username']
capabilities['proxy']['socksPassword'] = proxy['password']

driver = webdriver.Chrome(executable_path=[path to your chromedriver], desired_capabilities=capabilities)

编辑:不幸的是,自从这篇文章更新到 Selenium 或 Chrome 后,这种方法似乎不再有效。截至目前,我还不知道其他解决方案,但如果我发现任何问题,我会尝试并更新它。

关于python - 使用 Python 使用 Selenium 设置 chromedriver 代理身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37775695/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com