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
org.openqa.selenium.Point
Why use java.awt.Robot when org.openqa.selenium.interactions.Actions.class would probably work fine? Just sayin.
Actions builder = new Actions(driver); builder.keyDown(Keys.CONTROL) .click(someElement) .moveByOffset( 10, 25 ); .click(someOtherElement) .keyUp(Keys.CONTROL).build().perform();