Move the mouse up of a controller/WebElement is simple, is just put this line of code:
WebElement valoratual = driver.findElement(By.className(“product-description-catalog-item”));
Robot robot = new Robot();
robot.mouseMove(valoratual.getLocation().getX(), valoratual.getLocation().getY());
Yes, you have to catch the X and Y in the page and the robot will put the mouse over thispoint.
Bye bye 🙂