How to do a mouse hover/over using selenium webdriver to see the hidden menu without performing any mouse clicks?
There is a hidden menu on website which i am testing th
Try this?
// this makes sure the element is visible before you try to do anything
// for slow loading pages
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
var element = wait.Until(ExpectedConditions.ElementIsVisible(By.Id(elementId)));
Actions action = new Actions(driver);
action.MoveToElement(element).Perform();