尝试找到一种方法来关闭从IE中的链接下载文件的选项。查找一个可以使用键盘“Alt + Q”的机器人,这将是理想的结果,但是当我去运行该程序时,它会卡在Robit()部分。
当我点击Webbrowser时,我正在使用命令。在我当时正在使用的任何应用程序中。会爱一些帮助
public static void V_home(WebDriver driver) throws InterruptedException, AWTException{
driver.get(VUrl);
...
driver.findElement(By.linkText("Download School and District File")).click();
Robit();
}
public static void Robit() throws InterruptedException, AWTException{
Robot robot = new Robot();
Thread.sleep(1000);
robot.keyPress(KeyEvent.VK_ALT);
Thread.sleep(1000);
robot.keyPress(KeyEvent.VK_Q);
Thread.sleep(1000);
robot.keyRelease(KeyEvent.VK_ALT);
robot.keyRelease(KeyEvent.VK_Q);
}