我目前正在尝试将光标移动到org.openqa.selenium.Point
已通过检查实时图表上是否出现标记来设置的点 ( ),我无法从中获得任何详细信息,但可以找到 X 和 Y 坐标。
如何将鼠标移至所述点以打开底层 JavaScript 菜单?
当前代码
//finds marker on the current web page
Point image = page.findImage("C:\\Pictures\\marker.png") ;
//move mouse to this x,y location
driver.getMouse().mouseMove((Coordinates) image);
这不起作用,因为Point
不能强制转换为org.openqa.selenium.interactions.internal.Coordinates
.