我使用下面的代码下载文件,但是在运行脚本后我终于获得了保存文件的windown警报,如何将文件保存在桌面/特定文件夹中
package Inbox;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
public class Downloadfile {
public static void main(String[] args) {
FirefoxProfile p1 = new FirefoxProfile();
p1.setPreference("browser.helperApps.neverAsk.SaveToDisk", "application/java_archive");
WebDriver f1 = new FirefoxDriver(p1);
f1.get("http://www.seleniumhq.org/download/");
f1.findElement(By.linkText("3.6.0")).click();
f1.switchTo().alert().dismiss();
}
}