0

IE의 파일 다운로드 대화 상자가 Selenium WebDriver 또는 다른 Java 라이브러리를 사용하여 표시되는지 여부를 확인할 수 있습니까?Java - Selenium WebDriver - 파일 다운로드 대화 상자가 표시되는지 어떻게 확인합니까? (가시성 만 다운로드하지 않음)

파일을 다운로드하고 싶지 않습니다. 대화 상자의 표시 여부를 확인할 수 없습니다.

또한 대화 상자를 닫을 수 없습니다.

어떤 도움이 필요합니까?

File Download Dialog Box

답변

0
  1. 확인은 당신의 IE UNEXPECTED_ALERT_BEHAVIOR는

시도 {대화 상자가 자바 스크립트 경고 아니라고

 //Click the link that brings up the download dilaog 
     // Perform your next step : This is where the script will throw the excpetion due to the modal dialog. 
     } 
    catch(Exception e){ 
     if(e.getMessage().contains("Modal dialog present")) { 
     System.out.println("A modal dialog is present. (which can be a download dialog)"); 
     System.out.println(e.getMessage()); 
     // the exception message includes text contained in the dialaog. You can use it for validaton. 
     //Use a java robot class to cancel the dialog 
      Robot robot= new Robot(); 
     robot.keyPress(KeyEvent.VK_ENTER); 
    //Since the current focus is on cancel.. else use robot.keyPress(KeyEvent.VK_TAB) as needed. 
     } 
+0

을 무시하도록 설정되어있는 경우. – Arran

+0

내 나쁜 ... 대답을 업데이 트했습니다. –

관련 문제