Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 webdriver.chrome.driver
Proxy proxy = new Proxy(); proxy.setHttpProxy("0.0.0.0:1234"); capabilities.setCapability("proxy", proxy);
以前效果很好,但现在我在需要身份验证的代理服务器后面进行了测试。如何向 chrome 传递代理所需的用户名/密码?
我在文档中找不到任何内容:/
任何帮助将不胜感激。
因此,经过大量研究,我了解到这几乎是一个限制,很多人正在通过使用 chrome 扩展来解决,该扩展会在代理密码弹出时自动输入。
我选择不走这条路线,并将我的代理切换到基于 IP 的身份验证。
希望这对其他人有帮助。