我想在打开“下载文件”对话框时单击“输入”按钮。 我试过这个,我可以看到它按下Enter按钮但文件没有下载。
Robot robot = null;
try {
robot = new Robot();
} catch (AWTException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("Robot class erreur"+e);
}
robot.keyPress(KeyEvent.VK_ENTER);
感谢您的帮助。