I am very new to Selenium, and based on another's team work, I have a project that uses WebDriver.dll and WebDriver.Support.dll (2.40.0.0), with IEDriverService.exe (2.39.0.0).
The product we're testing has a control which, while the mouse is hovering over it, causes a popup to display, and when the mouse moves away from the control (and popup) to somewhere else on the screen, the popup disappears. Pretty standard fare. But Selenium isn't actually moving the mouse to the control, and so when we tell it to Hover, if it's firing the event that triggers the display of the popup at all, I think it's immediately thereafter triggering the mouseout event causing the popup to disappear again, so quickly that one can't tell it ever opened in the first place.
Is there some way around this?