我是硒的新手,我只是从Google搜索PDF并单击它,所以我可以下载它。
当我手动操作时。我可以通过Selenium驱动程序下载PDF文件,当我单击链接将其重定向到新的浏览器选项卡并打开PDF时,而不显示下载窗口框。
FirefoxProfile profile= new FirefoxProfile();
profile.setPreference("browser.download.dir", "D:\\Selenium");
profile.setPreference("browser.helperApps.neverAsk.saveToDisk",
"application/pdf;");
//Clicking on the pdf link. driver.get("https://www.google.com");
driver.findElement(By.name("q")).sendKeys("Download sample pdf");
driver.findElement(By.name("btnK")).click();
driver.findElement(By.xpath(".//*[@id='rso']/div/div/div[1]/div/div/h3/a")).click();
Thread.sleep(5000);