Lines Matching refs:robot
86 Robot robot = new Robot();
87 robot.setAutoDelay(100);
88 robot.waitForIdle();
93 robot.mouseMove(x, pt.y + size.height / 2);
101 robot.mouseWheel(1);
102 robot.waitForIdle();
110 robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
111 robot.waitForIdle();
112 robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
113 robot.waitForIdle();
117 robot.mouseMove(x, --y);
118 robot.waitForIdle();
126 robot.mouseMove(x, y); // move to the last visible item in the drop-down list
127 robot.waitForIdle();
129 robot.mouseWheel(choice.getItemCount()); // wheel to the last item
130 robot.waitForIdle();
134 robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
135 robot.waitForIdle();
136 robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
137 robot.waitForIdle();
146 throw new RuntimeException("AWTException occurred - problem creating robot!");