Uses of Class
org.openqa.selenium.devtools.v141.fetch.model.RequestId
Packages that use RequestId
Package
Description
-
Uses of RequestId in org.openqa.selenium.devtools.v141.fetch
Methods in org.openqa.selenium.devtools.v141.fetch with parameters of type RequestIdModifier and TypeMethodDescriptionstatic org.openqa.selenium.devtools.Command<Void> Fetch.continueRequest(RequestId requestId, Optional<String> url, Optional<String> method, Optional<String> postData, Optional<List<HeaderEntry>> headers, Optional<Boolean> interceptResponse) Continues the request, optionally modifying some of its parameters.static org.openqa.selenium.devtools.Command<Void> Fetch.continueResponse(RequestId requestId, Optional<Integer> responseCode, Optional<String> responsePhrase, Optional<List<HeaderEntry>> responseHeaders, Optional<String> binaryResponseHeaders) Continues loading of the paused response, optionally modifying the response headers.static org.openqa.selenium.devtools.Command<Void> Fetch.continueWithAuth(RequestId requestId, AuthChallengeResponse authChallengeResponse) Continues a request supplying authChallengeResponse following authRequired event.static org.openqa.selenium.devtools.Command<Void> Fetch.failRequest(RequestId requestId, ErrorReason errorReason) Causes the request to fail with specified reason.static org.openqa.selenium.devtools.Command<Void> Fetch.fulfillRequest(RequestId requestId, Integer responseCode, Optional<List<HeaderEntry>> responseHeaders, Optional<String> binaryResponseHeaders, Optional<String> body, Optional<String> responsePhrase) Provides response to the request.static org.openqa.selenium.devtools.Command<Fetch.GetResponseBodyResponse> Fetch.getResponseBody(RequestId requestId) Causes the body of the response to be received from the server and returned as a single string.static org.openqa.selenium.devtools.Command<StreamHandle> Fetch.takeResponseBodyAsStream(RequestId requestId) Returns a handle to the stream representing the response body. -
Uses of RequestId in org.openqa.selenium.devtools.v141.fetch.model
Methods in org.openqa.selenium.devtools.v141.fetch.model that return RequestIdModifier and TypeMethodDescriptionAuthRequired.getRequestId()Each request the page makes will have a unique id.RequestPaused.getRequestId()Each request the page makes will have a unique id.Methods in org.openqa.selenium.devtools.v141.fetch.model that return types with arguments of type RequestIdModifier and TypeMethodDescriptionRequestPaused.getRedirectedRequestId()If the request is due to a redirect response from the server, the id of the request that has caused the redirect.Constructors in org.openqa.selenium.devtools.v141.fetch.model with parameters of type RequestIdModifierConstructorDescriptionAuthRequired(RequestId requestId, Request request, FrameId frameId, ResourceType resourceType, AuthChallenge authChallenge) RequestPaused(RequestId requestId, Request request, FrameId frameId, ResourceType resourceType, Optional<ErrorReason> responseErrorReason, Optional<Integer> responseStatusCode, Optional<String> responseStatusText, Optional<List<HeaderEntry>> responseHeaders, Optional<RequestId> networkId, Optional<RequestId> redirectedRequestId)