How to change the default download directory with IE (Internet Explorer 11)

后端 未结 4 1223
暖寄归人
暖寄归人 2021-02-15 15:37

In this post I see the solutions for setting the download directories for Chrome and Firefox how to change file download location in Webdriver while using chrome driver/firefox

4条回答
  •  灰色年华
    2021-02-15 16:00

    I am changing default directory by changing REGEDIT.

    String path = "\"C:\\Test\"";
    String cmd1 = "REG ADD \"HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\" /F /V \"Default Download Directory\" /T REG_SZ /D "+ path;
    
    try {
        Runtime.getRuntime().exec(cmd1);
    } catch (Exception e) {
        System.out.println("Coulnd't change the registry for default directory for IE");
    }
    

提交回复
热议问题