FF version 19.0.2
Selenium WebDriver version: 2.31.2.0
How to verify that image hover is working using Webdriver? So I have 5 stars and each stars represent different title and I'm looking for a way to hover over those stars.
I used the below code but I dont see hovering over the image....
I have used following code snippets to
Actions builder = new Actions(driver);
WebElement tagElement = driver.findElement(By.CssSelector("#divctl00....."));
builder.moveToElement(tagElement).build().perform();