硒网络驱动程序移动鼠标到点
2022-09-03 00:33:10
我目前正在尝试将光标移动到一个点(),该点是通过检查实时图表上某个标记的出现次数来设置的,从中我无法获得任何详细信息,但可以找到X和Y坐标。org.openqa.selenium.Point
如何移动到鼠标上以将鼠标悬停在所述点上以打开底层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