Class ResponseReceived
- java.lang.Object
-
- org.openqa.selenium.devtools.network.model.ResponseReceived
-
public class ResponseReceived extends java.lang.Object
Fired when HTTP response is available.
-
-
Constructor Summary
Constructors Constructor Description ResponseReceived(RequestId requestId, LoaderId loaderId, MonotonicTime timestamp, ResourceType type, Response response, FrameId frameId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FrameId
getFrameId()
Frame identifier.LoaderId
getLoaderId()
Loader identifier.RequestId
getRequestId()
Request identifier.Response
getResponse()
Response data.MonotonicTime
getTimestamp()
Timestamp.ResourceType
getType()
Resource type.
-
-
-
Constructor Detail
-
ResponseReceived
public ResponseReceived(RequestId requestId, LoaderId loaderId, MonotonicTime timestamp, ResourceType type, Response response, FrameId frameId)
-
-
Method Detail
-
getRequestId
public RequestId getRequestId()
Request identifier.
-
getLoaderId
public LoaderId getLoaderId()
Loader identifier. Empty string if the request is fetched from worker.
-
getTimestamp
public MonotonicTime getTimestamp()
Timestamp.
-
getType
public ResourceType getType()
Resource type.
-
getResponse
public Response getResponse()
Response data.
-
getFrameId
public FrameId getFrameId()
Frame identifier.
-
-