Class DownloadProgress
- java.lang.Object
-
- org.openqa.selenium.devtools.v109.browser.model.DownloadProgress
-
@Beta public class DownloadProgress extends java.lang.ObjectFired when download makes progress. Last call has |done| == true.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDownloadProgress.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.StringgetGuid()Global unique identifier of the download.java.lang.NumbergetReceivedBytes()Total bytes received.DownloadProgress.StategetState()Download status.java.lang.NumbergetTotalBytes()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.
-
-