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.
Download download = page.waitForDownload(() -> {
page.getByText("Download file").click();
});
download.saveAs(Paths.get("/path/to/save/at/", download.suggestedFilename()));
Methods cancelAdded 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
Returns
createReadStreamAdded before v1.9 download.createReadStreamReturns a readable stream for a successful download, or throws for a failed/canceled download.
Usage
Download.createReadStream();
Returns
deleteAdded before v1.9 download.deleteDeletes the downloaded file. Will wait for the download to finish if necessary.
Usage
Returns
failureAdded before v1.9 download.failureReturns download error if any. Will wait for the download to finish if necessary.
Usage
Returns
pageAdded in: v1.12 download.pageGet the page that the download belongs to.
Usage
Returns
pathAdded before v1.9 download.pathReturns 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
Returns
saveAsAdded before v1.9 download.saveAsCopy 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
suggestedFilenameAdded before v1.9 download.suggestedFilenameReturns 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
urlAdded before v1.9 download.urlReturns downloaded url.
Usage
Returns
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4