Table of Contents

Class DownloadProgressEventArgs

Namespace
OpenQA.Selenium.DevTools.V148.Page
Assembly
Selenium.WebDriver.dll

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

public sealed class DownloadProgressEventArgs : EventArgs
Inheritance
DownloadProgressEventArgs
Inherited Members

Properties

Guid

Global unique identifier of the download.

[JsonPropertyName("guid")]
public string Guid { get; set; }

Property Value

string

ReceivedBytes

Total bytes received.

[JsonPropertyName("receivedBytes")]
public double ReceivedBytes { get; set; }

Property Value

double

State

Download status.

[JsonPropertyName("state")]
public string State { get; set; }

Property Value

string

TotalBytes

Total expected bytes to download.

[JsonPropertyName("totalBytes")]
public double TotalBytes { get; set; }

Property Value

double