class: Download
Added in: v1.8
Download objects are dispatched by page via the Page.event('download') 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.
// Start waiting for download before clicking. Note no await.
const downloadPromise = page.waitForEvent('download');
await page.getByText('Download file').click();
const download = await downloadPromise;
// Wait for the download process to complete and save the downloaded file somewhere.
await download.saveAs('/path/to/save/at/' + download.suggestedFilename());
// 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()));
# Start waiting for the download
async with page.expect_download() as download_info:
# Perform the action that initiates download
await page.get_by_text("Download file").click()
download = await download_info.value
# Wait for the download process to complete and save the downloaded file somewhere
await download.save_as("/path/to/save/at/" + download.suggested_filename)
# Start waiting for the download
with page.expect_download() as download_info:
# Perform the action that initiates download
page.get_by_text("Download file").click()
download = download_info.value
# Wait for the download process to complete and save the downloaded file somewhere
download.save_as("/path/to/save/at/" + download.suggested_filename)
// Start the task of waiting for the download before clicking
var waitForDownloadTask = page.WaitForDownloadAsync();
await page.GetByText("Download file").ClickAsync();
var download = await waitForDownloadTask;
// Wait for the download process to complete and save the downloaded file somewhere
await download.SaveAsAsync("/path/to/save/at/" + download.SuggestedFilename);
async method: Download.cancel
Added in: v1.13
Cancels a download. Will not fail if the download is already finished or canceled.
Upon successful cancellations, download.failure() would resolve to 'canceled'.
async method: Download.createReadStream
Added in: v1.8
Languages: Java, JavaScript, C# Returns:
Readable
Returns a readable stream for a successful download, or throws for a failed/canceled download.
If you don't need a readable stream, it's usually simpler to read the file from disk after the download completed. See Download.path().
async method: Download.delete
Added in: v1.8
Deletes the downloaded file. Will wait for the download to finish if necessary.
async method: Download.failure
Added in: v1.8 Returns:
null|string
Returns download error if any. Will wait for the download to finish if necessary.
method: Download.page
Added in: v1.12 Returns:
Page
Get the page that the download belongs to.
async method: Download.path
Added in: v1.8 Returns:
path
Returns 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.
async method: Download.saveAs
Added in: v1.8
Copy 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
await download.saveAs('/path/to/save/at/' + download.suggestedFilename());
download.saveAs(Paths.get("/path/to/save/at/", download.suggestedFilename()));
await download.save_as("/path/to/save/at/" + download.suggested_filename)
download.save_as("/path/to/save/at/" + download.suggested_filename)
await download.SaveAsAsync("/path/to/save/at/" + download.SuggestedFilename);
param: Download.saveAs.path
Added in: v1.8
path<path>
Path where the download should be copied.
method: Download.suggestedFilename
Added in: v1.8 Returns:
string
Returns 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.
method: Download.url
Added in: v1.8 Returns:
string
Returns downloaded url.