現在、ライブチャート上でマーカーの出現をチェックして設定されたポイント()にカーソルを移動しようとしています。このポイント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
。