在FF22上运行我的自动化脚本时,使用公司代理网络获取moz-proxy提示,其中显示“代理mox-proxy://proxy.abc.com:8080正在请求用户名和密码”。在护目镜后,我发现几个偏好设置如下,这对我不起作用。
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.setPreference("network.proxy.type",
ProxyType.SYSTEM.ordinal());
firefoxProfile.setPreference("signon.autologin.proxy", true);
firefoxProfile.setPreference("network.websocket.enabled", false);
firefoxProfile.setPreference("network.proxy.share_proxy_settings", false);
firefoxProfile.setPreference("network.automatic-ntlm-auth.allow-proxies", false);
firefoxProfile.setPreference("network.automatic-ntlm-auth.trusted-uris", "application url");
firefoxProfile.setPreference("network.negotiate-auth.delegation-uris", "application url");
firefoxProfile.setPreference("network.negotiate-auth.trusted-uris", "application url");
firefoxProfile.setEnableNativeEvents(false);
desiredCapabilities.setCapability(FirefoxDriver.PROFILE,
firefoxProfile);
return new FirefoxDriver(desiredCapabilities);
我正在使用FF22和Selenium 2.32版本。