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. All downloaded files are deleted when the browser closes.
Download event is emitted once the download starts. Download path becomes available once download completes:
with page.expect_download() as download_info:
page.click("a")
download = download_info.value
# wait for download to complete
path = download.path()
async with page.expect_download() as download_info:
await page.click("a")
download = await download_info.value
# waits for download to complete
path = await download.path()
noteBrowser context must be created with the accept_downloads
set to true
when user needs access to the downloaded content. If accept_downloads
is not set, download events are emitted, but the actual download is not performed and user has no access to the downloaded files.
Deletes the downloaded file.
download.failure()#Returns download error if any.
download.path()#Returns path to the downloaded file in case of successful download.
download.save_as(path)#path
<Union[str, pathlib.Path]> Path where the download should be saved.Saves the download to a user-specified path.
download.suggested_filename#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.
Returns downloaded url.
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