DownloadProgress

@Serializable
data class DownloadProgress(val guid: String, val totalBytes: Double, val receivedBytes: Double, val state: DownloadProgressState) : PageEvent(source)

Deprecated

Deprecated in the Chrome DevTools protocol

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

Official doc

Constructors

Link copied to clipboard
constructor(guid: String, totalBytes: Double, receivedBytes: Double, state: DownloadProgressState)

Properties

Link copied to clipboard

Global unique identifier of the download.

Link copied to clipboard

Total bytes received.

Link copied to clipboard

Download status.

Link copied to clipboard

Total expected bytes to download.