class: Download
Download objects are dispatched by page via the ‘download’ event.
All the downloaded files belonging to the browser context are deleted when the browser context is closed. All downloaded files are deleted when the browser closes.
Download event is emitted once the download starts. Download path becomes available once download completes:
const [ download ] = await Promise.all([
page.waitForEvent('download'), // wait for download to start
page.click('a')
]);
// wait for download to complete
const path = await download.path();
...
NOTE Browser context must be created with the
acceptDownloads
set totrue
when user needs access to the downloaded content. IfacceptDownloads
is not set or set tofalse
, download events are emitted, but the actual download is not performed and user has no access to the downloaded files.
- download.createReadStream()
- download.delete()
- download.failure()
- download.path()
- download.suggestedFilename()
- download.url()
download.createReadStream()
- returns: <Promise
>
Returns readable stream for current download or null
if download failed.
download.delete()
- returns: <Promise>
Deletes the downloaded file.
download.failure()
- returns: <Promise
>
Returns download error if any.
download.path()
- returns: <Promise
>
Returns path to the downloaded file in case of successful download.
download.suggestedFilename()
- 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.
download.url()
- returns: <string>
Returns downloaded url.