Cancels a download. Will not fail if the download is already finished or canceled. Upon successful cancellations,
download.failure() would resolve to 'canceled'.
Returns Promise<void>
createReadStream
createReadStream(): Promise<null | Readable>
Returns readable stream for current download or null if download failed.
Returns Promise<null | Readable>
delete
delete(): Promise<void>
Deletes the downloaded file. Will wait for the download to finish if necessary.
Returns Promise<void>
failure
failure(): Promise<null | string>
Returns download error if any. Will wait for the download to finish if necessary.
Returns path to the downloaded file in case of successful 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.
Returns Promise<null | string>
saveAs
saveAs(path: string): Promise<void>
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.
Parameters
path: string
Path where the download should be copied.
Returns Promise<void>
suggestedFilename
suggestedFilename(): 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] 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: