After selecting an element, I attempted to physically move the mouse cursor over it.
I tried using the Actions class provided with Selenium and the method I used is moveToElement()
.
Actions actions = new Actions(driver);
actions.moveToElement(element).build().perform();
The version of the driver being used is ChromeDriver 75.0.3770.90.
My expectation was that the physical cursor would move to the location of the element.