我在使用Selenium时遇到问题。尝试导航到网站时,我必须使用我的公司登录名进行身份验证。
此代码是我尝试进行自动身份验证的尝试。这将导致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);