How to download a file in chrome or mozilla browser using Selenium WebDriver

0 votes
How to download a file (.zip or .pdf) in google chrome or mozilla firefox browser using Selenium Webdriver?
May 7, 2019 in Selenium by Uday
5,007 views

1 answer to this question.

0 votes

Hey Uday, you can write following lines of code to download any file in chrome or mozilla using selenium webdriver:

import java.util.HashMap;

import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

import org.openqa.selenium.chrome.ChromeOptions;


public class DownloadPDF {


static WebDriver driver;


public static void main(String[] args) throws InterruptedException {

System.setProperty("webdriver.chrome.driver", chrome_driver_path);

String downloadFilePath = "C:\\Users\\Prati_R\\Downloads\\PDFDownloads";

HashMap<String, Object> chromePref = new HashMap<String, Object>();

chromePref.put("profile.default_content_settings.popups", 0);

chromePref.put("download.default_directory", downloadFilePath);

ChromeOptions options = new ChromeOptions();

options.setExperimentalOption("prefs", chromePref);

driver = new ChromeDriver(options);

driver.get("https://www.seleniumhq.org/download/");

driver.findElement(By.xpath("//*[@id=\"mainContent\"]/p[7]/a[1]")).click();


Thread.sleep(3000);

driver.close();

}

}
answered May 7, 2019 by Pratibha
• 3,690 points

Related Questions In Selenium

0 votes
8 answers

How to open a link in new tab of chrome browser using Selenium WebDriver?

This below code works for me in ...READ MORE

answered Dec 14, 2020 in Selenium by Gitika
• 65,910 points
101,347 views
0 votes
1 answer
0 votes
2 answers

How to open a browser window in full screen using Selenium WebDriver with C#

Hi , we have inbuilt method Maximize(). driver.Manage().Wind ...READ MORE

answered Sep 6, 2020 in Selenium by Sri
• 3,190 points
15,503 views
+1 vote
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,576 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,559 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,603 views
0 votes
1 answer

How to check the state of a radio button or checkbox in Selenium?

Hey Priya, to check the state of ...READ MORE

answered May 7, 2019 in Selenium by Pratibha
• 3,690 points
4,111 views
0 votes
1 answer

How can I scroll a web page in Mozilla Firefox using Selenium?

Hi Rohan, steps to scroll a webpage in ...READ MORE

answered May 14, 2019 in Selenium by Pratibha
• 3,690 points
2,852 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP