In my really weird case I have a dropdown I want to expand. It is visible, not overlapped, I have all sorts of Implicit waits, page load timeouts and so on, of course everything works fine in FF and Chrome.
If I send element to smth like
driver.executeScript("arguments[0].click();", element);
, then the dropdown expands, but if I try:
or
new Actions(driver).click(element).build().perform();
or
element.sendKeys(Keys.ENTER);
then the element is just slightly blinks without expanding.
Any idea, my dear friends?
I'd like to know in detail, but to me having no experience in C++ for analyzing IEDriverServer.exe on my own =)