使用Selenium的Zscaler身份验证

时间:2019-05-13 20:58:51

标签: c# selenium authentication zscaler

我在使用Selenium时遇到问题。尝试导航到网站时,我必须使用我的公司登录名进行身份验证。 Authentication Window

此代码是我尝试进行自动身份验证的尝试。这将导致404错误页面。

string url = @"http://DOMAIN\USERNAME:PASSWORD@webpagetest.org";
FirefoxProfile profile = new FirefoxProfile();
profile.SetPreference("network.automatic-ntlm-auth.trusted-uris", "http://webpagetest.org");
FirefoxOptions options = new FirefoxOptions
{
    Profile = profile
};
IWebDriver driver = new FirefoxDriver(options);
driver.Navigate().GoToUrl(url);

0 个答案:

没有答案