Class RequestPaused
- java.lang.Object
-
- org.openqa.selenium.devtools.fetch.model.RequestPaused
-
public class RequestPaused extends java.lang.Object
Issued when the domain is enabled and the request URL matches the specified filter. The request is paused until the client responds with one of continueRequest, failRequest or fulfillRequest. The stage of the request can be determined by presence of responseErrorReason and responseStatusCode -- the request is at the response stage if either of these fields is present and in the request stage otherwise.
-
-
Constructor Summary
Constructors Constructor Description RequestPaused(RequestId requestId, Request request, FrameId frameId, ResourceType resourceType, ErrorReason responseErrorReason, java.lang.Integer responseStatusCode, java.util.List<HeaderEntry> responseHeaders, RequestId networkId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FrameId
getFrameId()
The id of the frame that initiated the request.RequestId
getNetworkId()
If the intercepted request had a corresponding Network.requestWillBeSent event fired for it, then this networkId will be the same as the requestId present in the requestWillBeSent event.Request
getRequest()
The details of the request.RequestId
getRequestId()
Each request the page makes will have a unique id.ResourceType
getResourceType()
How the requested resource will be used.ErrorReason
getResponseErrorReason()
Response error if intercepted at response stage.java.util.List<HeaderEntry>
getResponseHeaders()
Response headers if intercepted at the response stage.java.lang.Integer
getResponseStatusCode()
Response code if intercepted at response stage.
-
-
-
Constructor Detail
-
RequestPaused
public RequestPaused(RequestId requestId, Request request, FrameId frameId, ResourceType resourceType, ErrorReason responseErrorReason, java.lang.Integer responseStatusCode, java.util.List<HeaderEntry> responseHeaders, RequestId networkId)
-
-
Method Detail
-
getRequestId
public RequestId getRequestId()
Each request the page makes will have a unique id.
-
getRequest
public Request getRequest()
The details of the request.
-
getFrameId
public FrameId getFrameId()
The id of the frame that initiated the request.
-
getResourceType
public ResourceType getResourceType()
How the requested resource will be used.
-
getResponseErrorReason
public ErrorReason getResponseErrorReason()
Response error if intercepted at response stage.
-
getResponseStatusCode
public java.lang.Integer getResponseStatusCode()
Response code if intercepted at response stage.
-
getResponseHeaders
public java.util.List<HeaderEntry> getResponseHeaders()
Response headers if intercepted at the response stage.
-
getNetworkId
public RequestId getNetworkId()
If the intercepted request had a corresponding Network.requestWillBeSent event fired for it, then this networkId will be the same as the requestId present in the requestWillBeSent event.
-
-