I work with Selenium Webdriver in Java on a chronograph, and I try to constantly display the cursor while the test case is running. I tried the robot and the action class, but without any success. for example, I tried this:
Actions builder = new Actions(driver);
Action action = builder.moveToElement(logo).click().build();
action.perform();
In this case, I can see the cursor, but it does not move. Any help would be very helpful.
source
share