Access to file download dialog in Firefox

前端 未结 11 2599
一个人的身影
一个人的身影 2020-11-22 07:02

Is there any kind of API that can allow me to manipulate a file download dialog in Firefox? (I want to access the one that appears when user does something, not initiate one

11条回答
  •  醉梦人生
    2020-11-22 07:35

    Most browsers (in mine case Firefox) select the OK button by default. So I managed to solve this by using the following code. It basically presses enter for you and the file is downloaded.

    Robot robot = new Robot();
    
    // A short pause, just to be sure that OK is selected
    Thread.sleep(3000);
    
    robot.keyPress(KeyEvent.VK_ENTER);
    robot.keyRelease(KeyEvent.VK_ENTER);
    

提交回复
热议问题