static org.openqa.selenium.devtools.Command<java.lang.Void> |
Fetch.continueRequest(RequestId requestId,
java.util.Optional<java.lang.String> url,
java.util.Optional<java.lang.String> method,
java.util.Optional<java.lang.String> postData,
java.util.Optional<java.util.List<HeaderEntry>> headers,
java.util.Optional<java.lang.Boolean> interceptResponse) |
Continues the request, optionally modifying some of its parameters.
|
static org.openqa.selenium.devtools.Command<java.lang.Void> |
Fetch.continueResponse(RequestId requestId,
java.util.Optional<java.lang.Integer> responseCode,
java.util.Optional<java.lang.String> responsePhrase,
java.util.Optional<java.util.List<HeaderEntry>> responseHeaders,
java.util.Optional<java.lang.String> binaryResponseHeaders) |
Continues loading of the paused response, optionally modifying the
response headers.
|
static org.openqa.selenium.devtools.Command<java.lang.Void> |
Fetch.continueWithAuth(RequestId requestId,
AuthChallengeResponse authChallengeResponse) |
Continues a request supplying authChallengeResponse following authRequired event.
|
static org.openqa.selenium.devtools.Command<java.lang.Void> |
Fetch.failRequest(RequestId requestId,
ErrorReason errorReason) |
Causes the request to fail with specified reason.
|
static org.openqa.selenium.devtools.Command<java.lang.Void> |
Fetch.fulfillRequest(RequestId requestId,
java.lang.Integer responseCode,
java.util.Optional<java.util.List<HeaderEntry>> responseHeaders,
java.util.Optional<java.lang.String> binaryResponseHeaders,
java.util.Optional<java.lang.String> body,
java.util.Optional<java.lang.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.
|