Open lukeis opened 8 years ago
Reported by barancev
on 2013-10-31 20:50:02
Adding log file for IE10, and where protected mode settings are not set to be ignored,
for good measure.
Reported by nathandace
on 2013-11-07 16:36:25
Clicking the element via the IE console works using document.getElementByClassName("rtPlus")[7].click()
Likewise, the following code will also reproduce the click failure:
InternetExplorerOptions options = new InternetExplorerOptions();
options.EnableNativeEvents = false;
IWebDriver driver = new InternetExplorerDriver(options);
driver.Navigate().GoToUrl("http://demos.telerik.com/aspnet-ajax/treeview/examples/overview/defaultcs.aspx");
var elements = driver.FindElements(By.ClassName("rtPlus"));
// This click works.
((IJavaScriptExecutor) driver).ExecuteScript("arguments[0].click()", elements[7]);
// This click does not.
elements[7].Click();
Reported by nathandace
on 2013-11-20 01:29:43
Reported by luke.semerau
on 2015-09-17 17:45:56
Originally reported on Google Code with ID 6515
Reported by
nathandace
on 2013-10-31 19:22:27