Class LoadingFinished
- java.lang.Object
-
- org.openqa.selenium.devtools.network.model.LoadingFinished
-
public class LoadingFinished extends java.lang.Object
Fired when HTTP request has finished loading.
-
-
Constructor Summary
Constructors Constructor Description LoadingFinished(RequestId requestId, MonotonicTime timestamp, java.lang.Number encodedDataLength, java.lang.Boolean shouldReportCorbBlocking)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Number
getEncodedDataLength()
Total number of bytes received for this request.RequestId
getRequestId()
Request identifier.java.lang.Boolean
getShouldReportCorbBlocking()
Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console.MonotonicTime
getTimestamp()
Timestamp.
-
-
-
Constructor Detail
-
LoadingFinished
public LoadingFinished(RequestId requestId, MonotonicTime timestamp, java.lang.Number encodedDataLength, java.lang.Boolean shouldReportCorbBlocking)
-
-
Method Detail
-
getRequestId
public RequestId getRequestId()
Request identifier.
-
getTimestamp
public MonotonicTime getTimestamp()
Timestamp.
-
getEncodedDataLength
public java.lang.Number getEncodedDataLength()
Total number of bytes received for this request.
-
getShouldReportCorbBlocking
public java.lang.Boolean getShouldReportCorbBlocking()
Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console.
-
-