![]() |
The Java Developers Almanac 1.4 |
|
e635. Simulating Mouse and Key PressesThis feature is useful for tools that test windowing applications. try {
Robot robot = new Robot();
// Simulate a mouse click
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
// Simulate a key press
robot.keyPress(KeyEvent.VK_A);
robot.keyRelease(KeyEvent.VK_A);
} catch (AWTException e) {
}
© 2002 Addison-Wesley. |