BrowserEvent

@Serializable
sealed class BrowserEvent

Inheritors

Types

Link copied to clipboard
@Serializable
data class DownloadProgress(val guid: String, val totalBytes: Double, val receivedBytes: Double, val state: DownloadProgressState) : BrowserEvent

Fired when download makes progress. Last call has |done| == true.

Link copied to clipboard
@Serializable
data class DownloadWillBegin(val frameId: FrameId, val guid: String, val url: String, val suggestedFilename: String) : BrowserEvent

Fired when page is about to start a download.