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