Selenium Webdriver move mouse to Point

后端 未结 8 1068
小鲜肉
小鲜肉 2020-12-05 11:24

I am currently trying to move the cursor to a point (org.openqa.selenium.Point) that has been set by checking for an occurrence of a marker on a live chart from

8条回答
  •  抹茶落季
    2020-12-05 11:57

    Robot robot = new Robot();
    robot.mouseMove(coordinates.x,coordinates.y+80);
    

    Rotbot is good solution. It works for me.

提交回复
热议问题