import java.awt.MouseInfo;
import java.awt.Point;
import java.awt.Robot;

/**
 *
 * @author pardesha
 */
public class RobotTest {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws Exception { 
  Robot robot = new Robot(); 
  for(int x = 0; x < 1920; x += 192) 
  { 
    robot.mouseMove(x, 0); 
    robot.delay(1_000); 
    final Point location = MouseInfo.getPointerInfo().getLocation(); 
    System.out.println("Expected: " + x + "\t\tReal:" + location.getX()); 
  } 
} 
    
}
