Class DownloadProgress
- java.lang.Object
-
- org.openqa.selenium.devtools.v95.page.model.DownloadProgress
-
@Beta @Deprecated public class DownloadProgress extends java.lang.Object
Deprecated.Fired when download makes progress. Last call has |done| == true. Deprecated. Use Browser.downloadProgress instead.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DownloadProgress.State
Deprecated.
-
Constructor Summary
Constructors Constructor Description DownloadProgress(java.lang.String guid, java.lang.Number totalBytes, java.lang.Number receivedBytes, DownloadProgress.State state)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getGuid()
Deprecated.Global unique identifier of the download.java.lang.Number
getReceivedBytes()
Deprecated.Total bytes received.DownloadProgress.State
getState()
Deprecated.Download status.java.lang.Number
getTotalBytes()
Deprecated.Total expected bytes to download.
-
-
-
Constructor Detail
-
DownloadProgress
public DownloadProgress(java.lang.String guid, java.lang.Number totalBytes, java.lang.Number receivedBytes, DownloadProgress.State state)
Deprecated.
-
-
Method Detail
-
getGuid
public java.lang.String getGuid()
Deprecated.Global unique identifier of the download.
-
getTotalBytes
public java.lang.Number getTotalBytes()
Deprecated.Total expected bytes to download.
-
getReceivedBytes
public java.lang.Number getReceivedBytes()
Deprecated.Total bytes received.
-
getState
public DownloadProgress.State getState()
Deprecated.Download status.
-
-