DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Enterprise AI Trend Report: Gain insights on ethical AI, MLOps, generative AI, large language models, and much more.

2024 Cloud survey: Share your insights on microservices, containers, K8s, CI/CD, and DevOps (+ enter a $750 raffle!) for our Trend Reports.

PostgreSQL: Learn about the open-source RDBMS' advanced capabilities, core components, common commands and functions, and general DBA tasks.

AI Automation Essentials. Check out the latest Refcard on all things AI automation, including model training, data security, and more.

Related

  • How to Upload/Download a File To and From the Server
  • Step By Step Guide To Using Mule ESB
  • Basic Guide for Debian Packaging (NodeJS)
  • How to Automatically Detect Multiple Cybersecurity Threats from an Input Text String in Java

Trending

  • Power BI: Transforming Banking Data
  • Navigating the AI Renaissance: Practical Insights and Pioneering Use Cases
  • Implementation Best Practices: Microservice API With Spring Boot
  • Scaling Java Microservices to Extreme Performance Using NCache
  1. DZone
  2. Culture and Methodologies
  3. Career Development
  4. How To Download and Upload Files Using Selenium With Java

How To Download and Upload Files Using Selenium With Java

This tutorial demonstrates how to upload and download files using Selenium Webdriver across multiple operating systems and web browsers.

By 
Harshit Paul user avatar
Harshit Paul
·
Updated May. 18, 20 · Tutorial
Like (5)
Save
Tweet
Share
29.8K Views

Join the DZone community and get the full member experience.

Join For Free

While Selenium testing, you may have come across a requirement where you need to either download or upload a file in Selenium. Almost every web application over the internet may have a feature for allowing users to either download or upload a file. Be it a rich-media platform such as YouTube which lets you upload video files, an online photo collage maker, or an e-commerce web application which allows you to upload images. Even writing assistants like Grammarly and Plagiarism checker like Quetext offer an uploading file functionality.

Similarly, these websites offer downloading functionality, too. YouTube allows offline downloading, and e-commerce platforms such as Amazon will let you download the invoices of your orders. My point is that if you are an automation tester who has a routine set around Selenium testing, there is a good chance for you to run into a requirement where you may have to test a feature around downloading or uploading files in Selenium WebDriver.

In Selenium testing, it is very important to know how to upload files in Selenium WebDriver or download files in Selenium WebDriver through automation testing with Selenium. In this Selenium Java tutorial, I am going to highlight different ways through which you can download or upload files in Selenium WebDriver. 

What Is A Remote WebDriver?

Remote WebDriver implements each command of the JSONWireProtocol and users can perform locally and remotely on a remote server. All browser drivers are child classes of the RemoteWebDriver and RemoteWebDriver is a class type and implements all WebDriver interface. So, RemoteWebDriver has the capability of Selenium testing on either local infrastructure or on a cloud-based Selenium Grid such as LambdaTest.

Let’s understand the real use case of uploading files in Selenium WebDriver. Suppose you are developing automation scripts for testing with Selenium and Java over an online clinical web platform where patients can book a video consultation with a doctor. On that website, there is an option to upload a Test Report where a doctor can review and discuss test reports. In such a case, you need to use upload file concepts to upload reports to their clinical web application. 

Note: If you have already implemented file uploading script in your local script and want to upgrade to a remote cloud-based environment then you need to just change WebDriver to RemoteWebDriver and use the  driver.setFileDetector(new LocalFileDetector()); method.

Upload Files in Selenium With Java

If you are familiar with Selenium 1, accessible web server and  attachFile command were using upload files. And in Selenium 2 and going forward, it is like just a  sendkeys() command and you're done uploading a file. When you want to upload files locally then you can directly use SendKey() and give a path in code. However, the same thing will not work remotely as did on locally. For uploading files in Selenium Remote WebDriver, you need to leverage the method called the setFileDetector method. That way, Remote WebDriver acknowledges when you are uploading files for Selenium testing over either a local machine or a remote machine. With this excellent feature of Selenium 2, you do not have to write separate code to perform Selenium testing for uploading files over locally or remotely hosted web-application. We have following options to upload files in a Remote Selenium WebDriver:

  • SendKeys
  • Robot Class
  • AutoIT tool
  • Jacob API

Upload Files In Selenium WebDriver Using Sendkeys() 

It is always preferred to first use the built-in features provided by Selenium Java to upload a file in Remote Selenium WebDriver. That is the  SendKeys method. It directly applies to input tags which have an attribute as  type=’file’.

Here is an example of how to upload files in Selenium and Java using the Sendkeys():

Java
 




x


 
1
WebElement addFile = driver.findElement(By.xpath(".//input[@type='file']"));
2
 
          
3
addFile.sendKeys("/Users/neeraj.kumar/Desktop/c1.jpeg");


Upload Files In Selenium WebDriver Using Robot Class

The Robot class is an AWT class package in Java. This is also a very good option to choose for the Upload file in selenium. This will help to automate a Windows-based alert or pop up, print pop up or native Windows screen. This is independent of the Operating System. 

Here is the example of a file uploading using Robot class:

Java
 




xxxxxxxxxx
1
19


 
1
public void fileUpload (String path) {
2
        StringSelection strSelection = new StringSelection(path);
3
        Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
4
        clipboard.setContents(strSelection, null);
5
 
6
        Robot robot = new Robot();
7
  
8
        robot.delay(300);
9
        robot.keyPress(KeyEvent.VK_ENTER);
10
        robot.keyRelease(KeyEvent.VK_ENTER);
11
        robot.keyPress(KeyEvent.VK_CONTROL);
12
        robot.keyPress(KeyEvent.VK_V);
13
        robot.keyRelease(KeyEvent.VK_V);
14
        robot.keyRelease(KeyEvent.VK_CONTROL);
15
        robot.keyPress(KeyEvent.VK_ENTER);
16
        robot.delay(200);
17
        robot.keyRelease(KeyEvent.VK_ENTER);
18
    }
19
 
          


Upload File In Selenium WebDriver Using AutoIT 

AutoIT is an external automation tool and not provided by the Selenium community. Initially, AutoIT was used to automate native Windows related pop-ups, however, a drawback of using AutoIT is that it creates .exe file and runs only on Windows. It is not advisable to use AutoIT for file uploads. However, if you still wish to perform a file upload in Selenium WebDriver using AutoIT then here is an example for you:

Java
 




xxxxxxxxxx
1


 
1
WinWaitActive("File Upload"); 
2
 
          
3
Send("/Users/neeraj.kumar/Desktop/c1.jpeg");    
4
 
          
5
Send("{ENTER}")


Upload File using Jacob API

Jacob provides the API technique to upload files using Selenium. Again, to perform a file upload in Selenium WebDriver using Jacob API you would need a .dll file. That means it won’t work for a Mac or Linux operating system. If you only want to target Windows operating systems then here is an example of upload File using Jabob API.

Java
 




xxxxxxxxxx
1
35


 
1
public void UploadFile() throws InterruptedException {
2
 
          
3
        String userDir = System.getProperty("user.dir");
4
 
          
5
FinalString jacobArchitect =
6
 System.getProperty("sun.arch.data.model").contains("32") ? "jacob-1.18-x86.dll" : "jacob-1.18-x64.dll";
7
        String jacobArchitectPath = userDir + "\" + jacobArchitect;
8
 
          
9
        File filejacob = new File(jacobArchitect);
10
        System.setProperty(LibraryLoader.JACOB_DLL_PATH,
11
                filejacob.getAbsolutePath());
12
        AutoItX uploadWin = new AutoItX();
13
 
          
14
        driver = new FirefoxDriver();
15
        driver.get(“https://blueimp.github.io/jQuery-File-Upload/
16
”);
17
 
          
18
        Thread.sleep(1000);
19
 
          
20
WebElement addFile = driver.findElement(By.xpath(".//input[@type='file']"));
21
.click();
22
 
          
23
        Thread.sleep(1000);
24
 
          
25
        if (uploadWin.winWaitActive("File Upload", "", 5)) {
26
            if (uploadWin.winExists("File Upload")) {
27
                uploadWin.sleep(100);
28
                uploadWin.send("/Users/neeraj.kumar/Desktop/c1.jpeg");
29
                uploadWin.controlClick("File Upload", "", "&Open");
30
 
          
31
            }
32
        }
33
    }
34
 
          


File Upload In Selenium WebDriver Locally and in the Cloud

Now, let me demonstrate how to upload files in a Remote Selenium WebDriver over both, on your local infrastructure as well as over the cloud-based Selenium Grid such as LambdaTest. As a part of this Selenium Java tutorial, I would be focusing on leveraging the  SendKeys() method to upload files in Selenium and Java.  

The scenario would be

  • Open https://blueimp.github.io/jQuery-File-Upload/ and 
  • Click on Add files... button 
  • Then Start Upload 
  • Assert it back.

First off, we will start with the demonstration to upload files using local infrastructure machines. Later we will have a demonstration of the same Selenium testing script over a cloud-based Selenium Grid.

Upload Files In Selenium WebDriver Over Local Infrastructure

Below is a Selenium Java testing script which demonstrates how to upload files in Selenium WebDriver over your local machine.

Java
 




xxxxxxxxxx
1
52


 
1
package com.POMFramework.tests;
2
 
          
3
import static org.testng.Assert.assertTrue;
4
 
          
5
import java.util.concurrent.TimeUnit;
6
 
          
7
import org.openqa.selenium.By;
8
import org.openqa.selenium.WebElement;
9
import org.openqa.selenium.chrome.ChromeDriver;
10
import org.openqa.selenium.remote.RemoteWebDriver;
11
import org.testng.annotations.AfterClass;
12
import org.testng.annotations.BeforeClass;
13
import org.testng.annotations.Test;
14
 
          
15
public class LamdaTestUploadFile {
16
 
          
17
    private RemoteWebDriver driver;
18
 
          
19
    @BeforeClass
20
    public void setUp() throws Exception {
21
 
          
22
        System.setProperty("webdriver.chrome.driver", "/Users/neeraj.kumar/Desktop/chromedriver");
23
 
          
24
        driver = new ChromeDriver();
25
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
26
    }
27
 
          
28
    @Test
29
    public void lamdaTest() throws Exception {
30
        driver.get("https://blueimp.github.io/jQuery-File-Upload/");
31
        Thread.sleep(2000);
32
        WebElement addFile = driver.findElement(By.xpath(".//input[@type='file']"));
33
        addFile.sendKeys("/Users/neeraj.kumar/Desktop/c1.jpeg");
34
        
35
        driver.findElement(By.xpath(".//span[text()='Start upload']")).click();
36
 
          
37
        Thread.sleep(2000);
38
        if(driver.findElement(By.xpath(".//a[text()='c1.jpeg']")).isDisplayed()) {
39
            assertTrue(true, "Image Uploaded");
40
        }else {
41
            assertTrue(false, "Image not Uploaded");
42
        }
43
    }
44
    
45
 
          
46
    @AfterClass
47
    public void tearDown() throws Exception {
48
        driver.quit();
49
    }
50
}
51
 
          


That is it.! However, it isn’t all you need to know. It is important to note that when we refer to practical and real-time scenarios the requirement to perform automated browser testing might involve hundreds of browsers + OS combinations to be tested. Not to forget, the desired capabilities are bound to go bigger as your web application would scale over time. 

In such scenarios, maintaining an in-house Selenium infrastructure is both time-consuming and expensive. You will need to hire more machines and resources on-board. Unless you can afford a device lab provider such as Amazon AWS which can be costly for many businesses. So what can you do?

Upload Files In Selenium WebDriver Over An Online Selenium Grid

Now, the same scenario can be run on the online Selenium Grid. We will be running the same script over LambdaTest which is a cross browser testing tool offering an online Selenium Grid. You should observe here that we have changed only two points as shown below.

Java
 




x


 
1
driver = new RemoteWebDriver(new URL("http://hub.lambdatest.com:80/wd/hub"), capabilities);         
2
driver.setFileDetector(new LocalFileDetector());


And, you are done!!! Here is the full Selenium Java testing script to upload file in Selenium WebDriver over an online Selenium Grid.

Java
 




xxxxxxxxxx
1
62


 
1
package com.POMFramework.tests;
2
 
          
3
import static org.testng.Assert.assertTrue;
4
 
          
5
import java.net.URL;
6
import java.util.concurrent.TimeUnit;
7
 
          
8
import org.openqa.selenium.By;
9
import org.openqa.selenium.WebElement;
10
import org.openqa.selenium.chrome.ChromeOptions;
11
import org.openqa.selenium.remote.LocalFileDetector;
12
import org.openqa.selenium.remote.RemoteWebDriver;
13
import org.testng.annotations.AfterClass;
14
import org.testng.annotations.BeforeClass;
15
import org.testng.annotations.Test;
16
 
          
17
public class LamdaTestUploadFileRemotely {
18
 
          
19
    private RemoteWebDriver driver;
20
 
          
21
    @BeforeClass
22
    public void setUp() throws Exception {
23
 
          
24
        ChromeOptions capabilities = new ChromeOptions();
25
        capabilities.setCapability("user","<username>");
26
        capabilities.setCapability("accessKey","<accesskey>");
27
        capabilities.setCapability("build", "Build 2");
28
        capabilities.setCapability("name", "Check Uploaded Image");
29
        capabilities.setCapability("platformName", "Windows 10");
30
        capabilities.setCapability("browserName", "Chrome");
31
        capabilities.setCapability("browserVersion","79.0");
32
        
33
        driver = new RemoteWebDriver(new URL("http://hub.lambdatest.com:80/wd/hub"), capabilities);
34
        driver.setFileDetector(new LocalFileDetector());
35
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
36
    
37
    }
38
 
          
39
    @Test
40
    public void lamdaTest() throws Exception {
41
        driver.get("https://blueimp.github.io/jQuery-File-Upload/");
42
        Thread.sleep(2000);
43
        WebElement addFile = driver.findElement(By.xpath(".//input[@type='file']"));
44
        addFile.sendKeys("/Users/neeraj.kumar/Desktop/c1.jpeg");
45
        
46
        driver.findElement(By.xpath(".//span[text()='Start upload']")).click();
47
 
          
48
        Thread.sleep(2000);
49
        if(driver.findElement(By.xpath(".//a[text()='c1.jpeg']")).isDisplayed()) {
50
            assertTrue(true, "Image Uploaded");
51
        }else {
52
            assertTrue(false, "Image not Uploaded");
53
        }
54
    }
55
    
56
 
          
57
    @AfterClass
58
    public void tearDown() throws Exception {
59
        driver.quit();
60
    }
61
}
62
 
          


Download Files in Selenium WebDriver

Now, that you are familiar with file uploading in Selenium WebDriver, you might be thinking that downloading a file with Selenium WebDriver is going to be just as easy! Well, think again! You have a web application and you would want the download file functionality to work seamlessly across different browsers so that your customers aren’t bothered by a UI bug. However, every web browser offers a different UI when downloading a file. Let us look at different screenshots of different browsers running on a macOS.

Mozilla download screen




Google Chrome dowload screen


Similarly, these screenshots would differ for different operating systems, and operating system versions too. So when you are downloading a file through Google Chrome on Windows 7 it might give the below screen.

File dowload Windows 7

As you may notice, here the file was directly downloaded when the timer got to 0 seconds, without any user confirmation.

So every browser will have a different download mechanism based on the operating system over which it is being utilized. Browser configuration using a profile, different browser, different operating systems play a vital role while Selenium testing with Java to download the file. 

To automatically download file using Selenium with Java, we have the following options:

  • AutoIT
  • Robot Class
  • Browser Profile

Download a File In Selenium WebDriver Using AutoIT

Already we have discussed the AutoIT tool. The same tool is used for downloading files in selenium. Again, download window changes as per Browsers. So users have to consider all scenarios to automate download pop up. 

Here is an AutoIT script example:

Java
 




xxxxxxxxxx
1


 
1
WinWait("[CLASS:#MozillaDialogClass]","",8)
2
Send("!s")
3
Sleep(10000)
4
Send("{ENTER}")


Save this code and generate .exe file and execute it in java code using Runtime.getRuntime().exec(). Again, it is not advisable to use it as it supports only Windows operating system and its external tool.

Download File In Selenium WebDriver Using Robot Class

You can run the Selenium testing script to download files using Selenium with Java through the Robot class.

Java
 




xxxxxxxxxx
1
10
9


 
1
public void fileDownload() {
2
Robot robot = new Robot(); 
3
robot.keyPress(KeyEvent.VK_TAB);
4
        robot.keyRelease(KeyEvent.VK_TAB);
5
        robot.keyPress(KeyEvent.VK_ENTER); 
6
        robot.keyRelease(KeyEvent.VK_ENTER);  
7
 
          
8
    }


Note: AutoIT and Robot class code could change based on the browser-specific profile set as well as where you want to save. Moreover, the most important is the cursor focus. If your download pop up is not in focus then mostly your code will not work.

Download a File In Selenium WebDriver Using The Browser Profile Setting

By leveraging the browser profile setting, you can download files in Selenium WebDriver without interacting with the download window pop-up. You need to trick the browser profile. Here I have given an example for Google Chrome browser and Mozilla Firefox browser.

Add this code into your Selenium Java testing suite.

Google Chrome

Java
 




x
9


 
1
System.setProperty("webdriver.chrome.driver", "/Users/neeraj.kumar/Desktop/chromedriver");
2
 
          
3
ChromeOptions options = new ChromeOptions();
4
        
5
Map<String, Object> prefs = new HashMap<String, Object>();
6
prefs.put("download.prompt_for_download", false);
7
options.setExperimentalOption("prefs", prefs);
8
        
9
RemoteWebDriver driver = new ChromeDriver(options);


Mozilla Firefox

Java
 




xxxxxxxxxx
1


 
1
FirefoxProfile profile=new FirefoxProfile();
2
profile.setPreference("browser.helperApps.neverAsk.openFile", "application/octet-stream");
3
 
          
4
WebDriver driver=new FirefoxDriver(profile);


A  File Download In Selenium WebDriver

As we did a practical implementation of uploading files in Selenium WebDriver, we will now practice downloading files in Selenium WebDriver on both local and cloud Selenium Grid. I will be demonstrating the file downloading using the Browser Profile Setting.

Download Files Using Selenium With Java With The Browser Profile Setting

Java
 




xxxxxxxxxx
1
54


 
1
package com.POMFramework.tests;
2
 
          
3
import java.awt.AWTException;
4
import java.util.HashMap;
5
import java.util.Map;
6
import java.util.concurrent.TimeUnit;
7
 
          
8
import org.openqa.selenium.By;
9
import org.openqa.selenium.WebElement;
10
import org.openqa.selenium.chrome.ChromeDriver;
11
import org.openqa.selenium.chrome.ChromeOptions;
12
import org.openqa.selenium.remote.RemoteWebDriver;
13
import org.testng.annotations.AfterClass;
14
import org.testng.annotations.BeforeClass;
15
import org.testng.annotations.Test;
16
 
          
17
public class LamdaTestDownloadFile {
18
    
19
    private RemoteWebDriver driver;
20
 
          
21
    @BeforeClass
22
    public void setUp() throws Exception {
23
 
          
24
        System.setProperty("webdriver.chrome.driver", "/Users/neeraj.kumar/Desktop/chromedriver");
25
 
          
26
        ChromeOptions options = new ChromeOptions();
27
        
28
        Map<String, Object> prefs = new HashMap<String, Object>();
29
        prefs.put("download.prompt_for_download", false);
30
        options.setExperimentalOption("prefs", prefs);
31
        
32
        driver = new ChromeDriver(options);
33
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
34
        driver.manage().window().maximize();
35
    }
36
    
37
    @Test
38
    public void fileDownload() throws AWTException, InterruptedException {
39
        
40
        driver.get("https://chromedriver.storage.googleapis.com/index.html?path=79.0.3945.36/");
41
        Thread.sleep(2000);
42
        WebElement btnDownload = driver.findElement(By.xpath(".//a[text()='chromedriver_win32.zip']"));
43
        btnDownload.click();
44
        
45
        Thread.sleep(7000);
46
        
47
    }
48
 
          
49
    @AfterClass
50
    public void tearDown() throws Exception {
51
        driver.quit();
52
    }
53
}
54
 
          


Note: Working on a local machine for downloading files is easy to handle but on a remote machine, it works based on the permission you have been provided to access the remote WebDrivers. 

Download File Example For Online Selenium Grid With The Browser Profile Setting

Similar to uploading, the only thing we need to tweak in the Selenium Java testing script is going to be the file detector and the hub URL.

Java
 




xxxxxxxxxx
1
64


 
1
package com.POMFramework.tests;
2
 
          
3
import java.awt.AWTException;
4
import java.net.URL;
5
import java.util.HashMap;
6
import java.util.Map;
7
import java.util.concurrent.TimeUnit;
8
 
          
9
import org.openqa.selenium.By;
10
import org.openqa.selenium.WebElement;
11
import org.openqa.selenium.chrome.ChromeDriver;
12
import org.openqa.selenium.chrome.ChromeOptions;
13
import org.openqa.selenium.remote.LocalFileDetector;
14
import org.openqa.selenium.remote.RemoteWebDriver;
15
import org.testng.annotations.AfterClass;
16
import org.testng.annotations.BeforeClass;
17
import org.testng.annotations.Test;
18
 
          
19
public class LamdaTestDownloadFileRemotely {
20
 
          
21
    private RemoteWebDriver driver;
22
 
          
23
    @BeforeClass
24
    public void setUp() throws Exception {
25
 
          
26
        ChromeOptions capabilities = new ChromeOptions();
27
        capabilities.setCapability("user","<userName>");
28
        capabilities.setCapability("accessKey","<Access key>");
29
        capabilities.setCapability("build", "Build 4");
30
        capabilities.setCapability("name", "Downloading File");
31
        capabilities.setCapability("platformName", "Windows 10");
32
        capabilities.setCapability("browserName", "Chrome");
33
        capabilities.setCapability("browserVersion","79.0");
34
        
35
        
36
        Map<String, Object> prefs = new HashMap<String, Object>();
37
        prefs.put("download.prompt_for_download", false);   
38
        capabilities.setExperimentalOption("prefs", prefs);
39
        
40
        driver = new RemoteWebDriver(new URL("http://hub.lambdatest.com:80/wd/hub"), capabilities);
41
        driver.setFileDetector(new LocalFileDetector());
42
        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
43
    
44
    }
45
    
46
    @Test
47
    public void fileDownload() throws AWTException, InterruptedException {
48
        
49
        driver.get("https://chromedriver.storage.googleapis.com/index.html?path=79.0.3945.36/");
50
        Thread.sleep(2000);
51
        WebElement btnDownload = driver.findElement(By.xpath(".//a[text()='chromedriver_win32.zip']"));
52
        btnDownload.click();
53
        
54
        Thread.sleep(10000);
55
    }
56
    
57
 
          
58
    @AfterClass
59
    public void tearDown() throws Exception {
60
        driver.quit();
61
    }
62
    
63
}


Below is a screenshot of automation logs which shows that the file is downloaded successfully.

Automation logs

Wrapping Up!

Working on the upload file feature of Selenium is very easy if you have understood the difference between Remote WebDriver and WebDriver Interface. Selenium alows you to work to upload file feature on both local machine and remote machine. With the help of WebDriver, you can directly upload a file locally and with little change in object creation, and your script will run on a remote server as well. Similarly, downloading a file using a third-party tool would end up having a flaky automation test. Given practical examples for both and detailed explanations will give you more insight into this article.

Upload Java (programming language) Download operating system Web application workplace

Published at DZone with permission of Harshit Paul, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • How to Upload/Download a File To and From the Server
  • Step By Step Guide To Using Mule ESB
  • Basic Guide for Debian Packaging (NodeJS)
  • How to Automatically Detect Multiple Cybersecurity Threats from an Input Text String in Java

Partner Resources


Comments

ABOUT US

  • About DZone
  • Send feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: