Download
Download objects are dispatched by page via the Page.onDownload(handler) event.
All the downloaded files belonging to the browser context are deleted when the browser context is closed.
Download event is emitted once the download starts. Download path becomes available once download completes.
// Wait for the download to start
Download download = page.waitForDownload(() -> {
// Perform the action that initiates download
page.getByText("Download file").click();
});
// Wait for the download process to complete and save the downloaded file somewhere
download.saveAs(Paths.get("/path/to/save/at/", download.suggestedFilename()));
Methods
cancel
Added in: v1.13Cancels a download. Will not fail if the download is already finished or canceled. Upon successful cancellations, download.failure()
would resolve to 'canceled'
.
Usage
Download.cancel();
Returns
createReadStream
Added before v1.9Returns a readable stream for a successful download, or throws for a failed/canceled download.
Usage
Download.createReadStream();
Returns
delete
Added before v1.9Deletes the downloaded file. Will wait for the download to finish if necessary.
Usage
Download.delete();
Returns
failure
Added before v1.9Returns download error if any. Will wait for the download to finish if necessary.
Usage
Download.failure();
Returns
page
Added in: v1.12Get the page that the download belongs to.
Usage
Download.page();
Returns
path
Added before v1.9Returns path to the downloaded file for a successful download, or throws for a failed/canceled download. The method will wait for the download to finish if necessary. The method throws when connected remotely.
Note that the download's file name is a random GUID, use Download.suggestedFilename() to get suggested file name.
Usage
Download.path();
Returns
saveAs
Added before v1.9Copy the download to a user-specified path. It is safe to call this method while the download is still in progress. Will wait for the download to finish if necessary.
Usage
download.saveAs(Paths.get("/path/to/save/at/", download.suggestedFilename()));
Arguments
Returns
suggestedFilename
Added before v1.9Returns suggested filename for this download. It is typically computed by the browser from the Content-Disposition
response header or the download
attribute. See the spec on whatwg. Different browsers can use different logic for computing it.
Usage
Download.suggestedFilename();
Returns
url
Added before v1.9Returns downloaded url.
Usage
Download.url();
Returns