Uses of Class
org.openqa.selenium.devtools.runtime.model.RemoteObject
-
-
Uses of RemoteObject in org.openqa.selenium.devtools.animation
Methods in org.openqa.selenium.devtools.animation that return types with arguments of type RemoteObject Modifier and Type Method Description static Command<RemoteObject>
Animation. resolveAnimation(java.lang.String animationId)
Gets the remote object of the Animation. -
Uses of RemoteObject in org.openqa.selenium.devtools.debugger
Methods in org.openqa.selenium.devtools.debugger that return RemoteObject Modifier and Type Method Description RemoteObject
Debugger.EvaluateOnCallFrameResponse. getResult()
Object wrapper for the evaluation result.RemoteObject
Debugger.ExecuteWasmEvaluatorResponse. getResult()
Object wrapper for the evaluation result.Constructors in org.openqa.selenium.devtools.debugger with parameters of type RemoteObject Constructor Description EvaluateOnCallFrameResponse(RemoteObject result, java.util.Optional<ExceptionDetails> exceptionDetails)
ExecuteWasmEvaluatorResponse(RemoteObject result, java.util.Optional<ExceptionDetails> exceptionDetails)
-
Uses of RemoteObject in org.openqa.selenium.devtools.debugger.model
Methods in org.openqa.selenium.devtools.debugger.model that return RemoteObject Modifier and Type Method Description RemoteObject
Scope. getObject()
Object representing the scope.RemoteObject
CallFrame. getThis()
`this` object for this call frame.Methods in org.openqa.selenium.devtools.debugger.model that return types with arguments of type RemoteObject Modifier and Type Method Description java.util.Optional<RemoteObject>
CallFrame. getReturnValue()
The value being returned, if the function is at return point.Constructors in org.openqa.selenium.devtools.debugger.model with parameters of type RemoteObject Constructor Description CallFrame(CallFrameId callFrameId, java.lang.String functionName, java.util.Optional<Location> functionLocation, Location location, java.lang.String url, java.util.List<Scope> scopeChain, RemoteObject _this, java.util.Optional<RemoteObject> returnValue)
Scope(Scope.Type type, RemoteObject object, java.util.Optional<java.lang.String> name, java.util.Optional<Location> startLocation, java.util.Optional<Location> endLocation)
-
Uses of RemoteObject in org.openqa.selenium.devtools.dom
Methods in org.openqa.selenium.devtools.dom that return types with arguments of type RemoteObject Modifier and Type Method Description static Command<RemoteObject>
DOM. resolveNode(java.util.Optional<NodeId> nodeId, java.util.Optional<BackendNodeId> backendNodeId, java.util.Optional<java.lang.String> objectGroup, java.util.Optional<ExecutionContextId> executionContextId)
Resolves the JavaScript node object for a given NodeId or BackendNodeId. -
Uses of RemoteObject in org.openqa.selenium.devtools.domdebugger.model
Methods in org.openqa.selenium.devtools.domdebugger.model that return types with arguments of type RemoteObject Modifier and Type Method Description java.util.Optional<RemoteObject>
EventListener. getHandler()
Event handler function value.java.util.Optional<RemoteObject>
EventListener. getOriginalHandler()
Event original handler function value.Constructor parameters in org.openqa.selenium.devtools.domdebugger.model with type arguments of type RemoteObject Constructor Description EventListener(java.lang.String type, java.lang.Boolean useCapture, java.lang.Boolean passive, java.lang.Boolean once, ScriptId scriptId, java.lang.Integer lineNumber, java.lang.Integer columnNumber, java.util.Optional<RemoteObject> handler, java.util.Optional<RemoteObject> originalHandler, java.util.Optional<BackendNodeId> backendNodeId)
-
Uses of RemoteObject in org.openqa.selenium.devtools.heapprofiler
Methods in org.openqa.selenium.devtools.heapprofiler that return types with arguments of type RemoteObject Modifier and Type Method Description static Command<RemoteObject>
HeapProfiler. getObjectByHeapObjectId(HeapSnapshotObjectId objectId, java.util.Optional<java.lang.String> objectGroup)
-
Uses of RemoteObject in org.openqa.selenium.devtools.indexeddb.model
Methods in org.openqa.selenium.devtools.indexeddb.model that return RemoteObject Modifier and Type Method Description RemoteObject
DataEntry. getKey()
Key object.RemoteObject
DataEntry. getPrimaryKey()
Primary key object.RemoteObject
DataEntry. getValue()
Value object.Constructors in org.openqa.selenium.devtools.indexeddb.model with parameters of type RemoteObject Constructor Description DataEntry(RemoteObject key, RemoteObject primaryKey, RemoteObject value)
-
Uses of RemoteObject in org.openqa.selenium.devtools.log.model
Methods in org.openqa.selenium.devtools.log.model that return types with arguments of type RemoteObject Modifier and Type Method Description java.util.Optional<java.util.List<RemoteObject>>
LogEntry. getArgs()
Call arguments. -
Uses of RemoteObject in org.openqa.selenium.devtools.runtime
Methods in org.openqa.selenium.devtools.runtime that return RemoteObject Modifier and Type Method Description RemoteObject
Runtime.AwaitPromiseResponse. getResult()
Promise result.RemoteObject
Runtime.CallFunctionOnResponse. getResult()
Call result.RemoteObject
Runtime.EvaluateResponse. getResult()
Evaluation result.RemoteObject
Runtime.RunScriptResponse. getResult()
Run result.Methods in org.openqa.selenium.devtools.runtime that return types with arguments of type RemoteObject Modifier and Type Method Description static Command<RemoteObject>
Runtime. queryObjects(RemoteObjectId prototypeObjectId, java.util.Optional<java.lang.String> objectGroup)
Constructors in org.openqa.selenium.devtools.runtime with parameters of type RemoteObject Constructor Description AwaitPromiseResponse(RemoteObject result, java.util.Optional<ExceptionDetails> exceptionDetails)
CallFunctionOnResponse(RemoteObject result, java.util.Optional<ExceptionDetails> exceptionDetails)
EvaluateResponse(RemoteObject result, java.util.Optional<ExceptionDetails> exceptionDetails)
RunScriptResponse(RemoteObject result, java.util.Optional<ExceptionDetails> exceptionDetails)
-
Uses of RemoteObject in org.openqa.selenium.devtools.runtime.model
Methods in org.openqa.selenium.devtools.runtime.model that return RemoteObject Modifier and Type Method Description RemoteObject
InspectRequested. getObject()
Methods in org.openqa.selenium.devtools.runtime.model that return types with arguments of type RemoteObject Modifier and Type Method Description java.util.List<RemoteObject>
ConsoleAPICalled. getArgs()
Call arguments.java.util.Optional<RemoteObject>
ExceptionDetails. getException()
Exception object if available.java.util.Optional<RemoteObject>
PrivatePropertyDescriptor. getGet()
A function which serves as a getter for the private property, or `undefined` if there is no getter (accessor descriptors only).java.util.Optional<RemoteObject>
PropertyDescriptor. getGet()
A function which serves as a getter for the property, or `undefined` if there is no getter (accessor descriptors only).java.util.Optional<RemoteObject>
PrivatePropertyDescriptor. getSet()
A function which serves as a setter for the private property, or `undefined` if there is no setter (accessor descriptors only).java.util.Optional<RemoteObject>
PropertyDescriptor. getSet()
A function which serves as a setter for the property, or `undefined` if there is no setter (accessor descriptors only).java.util.Optional<RemoteObject>
PropertyDescriptor. getSymbol()
Property symbol object, if the property is of the `symbol` type.java.util.Optional<RemoteObject>
InternalPropertyDescriptor. getValue()
The value associated with the property.java.util.Optional<RemoteObject>
PrivatePropertyDescriptor. getValue()
The value associated with the private property.java.util.Optional<RemoteObject>
PropertyDescriptor. getValue()
The value associated with the property.Constructors in org.openqa.selenium.devtools.runtime.model with parameters of type RemoteObject Constructor Description InspectRequested(RemoteObject object, java.util.Map<java.lang.String,java.lang.Object> hints)
Constructor parameters in org.openqa.selenium.devtools.runtime.model with type arguments of type RemoteObject Constructor Description ConsoleAPICalled(ConsoleAPICalled.Type type, java.util.List<RemoteObject> args, ExecutionContextId executionContextId, Timestamp timestamp, java.util.Optional<StackTrace> stackTrace, java.util.Optional<java.lang.String> context)
InternalPropertyDescriptor(java.lang.String name, java.util.Optional<RemoteObject> value)
PrivatePropertyDescriptor(java.lang.String name, java.util.Optional<RemoteObject> value, java.util.Optional<RemoteObject> get, java.util.Optional<RemoteObject> set)
PropertyDescriptor(java.lang.String name, java.util.Optional<RemoteObject> value, java.util.Optional<java.lang.Boolean> writable, java.util.Optional<RemoteObject> get, java.util.Optional<RemoteObject> set, java.lang.Boolean configurable, java.lang.Boolean enumerable, java.util.Optional<java.lang.Boolean> wasThrown, java.util.Optional<java.lang.Boolean> isOwn, java.util.Optional<RemoteObject> symbol)
-