I am trying to test hovering over an anchor that has a drop down.
I am using this syntax:
Browser _currentBrowser = new IE();
_currentBrowser.Link(Find.ById("navigation-id")).MouseEnter();
The navigation-id exists, and ideally a display:none ul would change to display:block, but I feel that this MouseEnter() doesn’t actually depict a hover effect. What should I be doing to represent a hover action?
try this…
HTH!