Extremely Popular
Go to Latest
interface puppeteer.Page.DownloadProgressEvent
import { type puppeteer } from "https://dotland.deno.dev/x/fresh@1.0.2/tests/deps.ts";
const { DownloadProgressEvent } = puppeteer.Page;

Fired when download makes progress. Last call has |done| == true. Deprecated. Use Browser.downloadProgress instead.

Properties

guid: string

Global unique identifier of the download.

totalBytes: number

Total expected bytes to download.

receivedBytes: number

Total bytes received.

state: ("inProgress" | "completed" | "canceled")

Download status. (DownloadProgressEventState enum)