mouse hover using javascript selenium code example
Example: how to hover mouse over an element in selenium
By using Actions class
WebElement element = driver.findElement(By.xpath("xpath"));
Actions action = new Actions(driver);
action.moveToElement(element).perform();