Download file | Selenium Forum
M
Posted on 27/05/2016
My code is like your code but it does not download the files to the testmay folder i created in c drive. Does it work for you?

import org.openqa.selenium.By;
import java.io.File;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;

public class Downloading_File {

public static void main(String[] args) {
FirefoxProfile profile = new FirefoxProfile();

profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.download.dir", "C:\\testmay");
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/msword,application/x-rar-compressed,application/octet-stream,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/csv,text/csv");

WebDriver driver = new FirefoxDriver();
driver.get("http://qtpselenium.com/test/testdownload.php");
driver.findElement(By.xpath("html/body/a[1]")).click();
driver.findElement(By.xpath("html/body/a[2]")).click();
driver.findElement(By.xpath("html/body/a[3]")).click();
//driver.findElement(By.xpath("html/body/a[4]")).click();


}

}

M
Replied on 27/05/2016

hey, i resolved this issue. please disregard my question. thank you!