[Solved] Click and drag option (JAVA)

To automate mouse clicks, holds and moves you can look into the Robot Class This is the basics of a mouse click: where x and y is the coordinate of the point on the screen in pixels where you want to click. public static void click(int x, int y) throws AWTException{ Robot bot = new … Read more