-1

Please, check the below link. How to close this:

https://www.screencast.com/t/hOwFbLRD6q

curveball
  • 4,320
  • 15
  • 39
  • 49
Renu Thakur
  • 551
  • 11
  • 35

1 Answers1

0

You can write an AutoIT script for this purpose or simply use java.awt.Robot class to send an ENTER.

Robot robot = new Robot();
robot.delay(3000);
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
plaidshirt
  • 5,189
  • 19
  • 91
  • 181