出于某种原因,我似乎无法在使用selenium IEDriver时单击登录按钮。它适用于Chrome和Firefox。
简单代码......
IWebDriver driver = new InternetExplorerDriver();
driver.Navigate().GoToUrl("http://www.notacv.com");
IWebElement element2 = driver.FindElement(By.CssSelector("div.container-fluid.hero ul li:nth-child(1)"));
element2.Click();
我尝试了以下方法来解决问题但没有成功
有谁知道如何解决这个问题?
答案 0 :(得分:1)
请检查当前链接https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver#Required_Configuration
确保您已应用所需的更改