Skip to content

Download

Source URL: https://playwright.dev/docs/api/class-download

Download objects are dispatched by page via the page.on(‘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());

Added in: v1.13 download.cancel

Cancels a download. Will not fail if the download is already finished or canceled. Upon successful cancellations, download.failure() would resolve to 'canceled'.

Usage

await download.cancel();

Returns


Added before v1.9 download.createReadStream

Returns a readable stream for a successful download, or throws for a failed/canceled download.

note

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().

Usage

await download.createReadStream();

Returns


Added before v1.9 download.delete

Deletes the downloaded file. Will wait for the download to finish if necessary.

Usage

await download.delete();

Returns


Added before v1.9 download.failure

Returns download error if any. Will wait for the download to finish if necessary.

Usage

await download.failure();

Returns


Added in: v1.12 download.page

Get the page that the download belongs to.

Usage

download.page();

Returns


Added before v1.9 download.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.

Usage

await download.path();

Returns


Added before v1.9 download.saveAs

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());

Arguments

Path where the download should be copied.

Returns


Added before v1.9 download.suggestedFilename

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.

Usage

download.suggestedFilename();

Returns


Added before v1.9 download.url

Returns downloaded url.

Usage

download.url();

Returns