gpt4 book ai didi

selenium-webdriver - 如何为代理包含代理身份验证用户名和密码?

转载 作者:行者123 更新时间:2023-12-04 07:56:52 34 4
gpt4 key购买 nike

我不想为我的办公网络的代理设置提供用户名/密码,我可以将代理提供给浏览器:

String PROXY = "localhost:8080";

org.openqa.selenium.Proxy proxy = new org.openqa.selenium.Proxy();
proxy.setHttpProxy(PROXY)
.setFtpProxy(PROXY)
.setSslProxy(PROXY);
DesiredCapabilities cap = new DesiredCapabailities();
cap.setPreference(CapabilityType.PROXY, proxy);

或者

user_pref("network.proxy.http", "127.0.0.1");
user_pref("network.proxy.http_port", 8084);
user_pref("network.proxy.ssl", "127.0.0.1");
user_pref("network.proxy.ssl_port", 8084);
user_pref("network.proxy.no_proxies_on", "localhost:4444");
user_pref("network.proxy.type", 1);

但是,无论我做什么,它仍然要求提供 Webdriver 的密码。
注意:我可以发送 htmlunit 驱动程序的用户名/密码。请帮忙!

最佳答案

试试下面

 FirefoxProfile profile = new FirefoxProfile(); 
profile.setPreference("network.proxy.type", 0);
WebDriver driver = new FirefoxDriver(profile);

关于selenium-webdriver - 如何为代理包含代理身份验证用户名和密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8840715/

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