How to perform a mouse hover functionality using Selenium Webdriver?
Test Case is like say, open Yahoo site and there is link (Mail) beside Sign-In. Upon mouse hover
Actions actions = new Actions(driver); actions.moveToElement(element).click().build().perform();