Dear Learner,
Hope you are doing good.
To perform the Mouse Hover Action on an element we can use the below code:
Actions action = new Actions(driver);
WebElement home = driver.findElement(By.partialLinkText("<Text>"));
action.moveToElement(home).build().perform();
action.moveToElement(home).build().perform();
Please try to implement the above code and let us know if you face any issue.
I will wait for your response.