Uses of Class
org.openqa.selenium.remote.Response
-
Packages that use Response Package Description org.openqa.selenium.remote org.openqa.selenium.remote.codec org.openqa.selenium.remote.codec.jwp org.openqa.selenium.remote.codec.w3c org.openqa.selenium.remote.service -
-
Uses of Response in org.openqa.selenium.remote
Methods in org.openqa.selenium.remote that return Response Modifier and Type Method Description Response
ProtocolHandshake.Result. createResponse()
Response
ResponseCodec. decode(T encodedResponse)
Decodes a response.Response
CommandExecutor. execute(Command command)
Response
HttpCommandExecutor. execute(Command command)
protected Response
RemoteWebDriver. execute(java.lang.String command)
protected Response
RemoteWebDriver. execute(java.lang.String driverCommand, java.util.Map<java.lang.String,?> parameters)
protected Response
RemoteWebDriver. execute(CommandPayload payload)
protected Response
RemoteWebElement. execute(java.lang.String command, java.util.Map<java.lang.String,?> parameters)
protected Response
RemoteWebElement. execute(CommandPayload payload)
Response
TracedCommandExecutor. execute(Command command)
Response
ErrorHandler. throwIfResponseFailed(Response response, long duration)
Methods in org.openqa.selenium.remote with parameters of type Response Modifier and Type Method Description T
ResponseCodec. encode(java.util.function.Supplier<T> factory, Response response)
Encodes a response.Response
ErrorHandler. throwIfResponseFailed(Response response, long duration)
-
Uses of Response in org.openqa.selenium.remote.codec
Methods in org.openqa.selenium.remote.codec that return Response Modifier and Type Method Description Response
AbstractHttpResponseCodec. decode(org.openqa.selenium.remote.http.HttpResponse encodedResponse)
protected abstract Response
AbstractHttpResponseCodec. reconstructValue(Response response)
Methods in org.openqa.selenium.remote.codec with parameters of type Response Modifier and Type Method Description org.openqa.selenium.remote.http.HttpResponse
AbstractHttpResponseCodec. encode(java.util.function.Supplier<org.openqa.selenium.remote.http.HttpResponse> factory, Response response)
Encodes the given response as a HTTP response message.protected abstract java.lang.Object
AbstractHttpResponseCodec. getValueToEncode(Response response)
protected abstract Response
AbstractHttpResponseCodec. reconstructValue(Response response)
-
Uses of Response in org.openqa.selenium.remote.codec.jwp
Methods in org.openqa.selenium.remote.codec.jwp that return Response Modifier and Type Method Description protected Response
JsonHttpResponseCodec. reconstructValue(Response response)
Methods in org.openqa.selenium.remote.codec.jwp with parameters of type Response Modifier and Type Method Description protected java.lang.Object
JsonHttpResponseCodec. getValueToEncode(Response response)
protected Response
JsonHttpResponseCodec. reconstructValue(Response response)
-
Uses of Response in org.openqa.selenium.remote.codec.w3c
Methods in org.openqa.selenium.remote.codec.w3c that return Response Modifier and Type Method Description Response
W3CHttpResponseCodec. decode(org.openqa.selenium.remote.http.HttpResponse encodedResponse)
protected Response
W3CHttpResponseCodec. reconstructValue(Response response)
Methods in org.openqa.selenium.remote.codec.w3c with parameters of type Response Modifier and Type Method Description protected java.lang.Object
W3CHttpResponseCodec. getValueToEncode(Response response)
protected Response
W3CHttpResponseCodec. reconstructValue(Response response)
-
Uses of Response in org.openqa.selenium.remote.service
Methods in org.openqa.selenium.remote.service that return Response Modifier and Type Method Description Response
DriverCommandExecutor. execute(Command command)
Sends thecommand
to the driver server for execution.
-