I want to press Enter Key when a new window pop up for example for downloading a file. I have to press OK button.
So I tried the following code:
Robot r = new Robot();
r.keyPress(KeyEvent.VK_ENTER);
r.keyRelease(KeyEvent.VK_ENTER);
This is just ignoring. Do you have any idea. Thank you