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.Constructors in org.openqa.selenium.devtools.debugger with parameters of type RemoteObject Constructor Description EvaluateOnCallFrameResponse(RemoteObject result, 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. getReturnValue()
The value being returned, if the function is at return point.RemoteObject
CallFrame. getThis()
`this` object for this call frame.Constructors in org.openqa.selenium.devtools.debugger.model with parameters of type RemoteObject Constructor Description CallFrame(CallFrameId callFrameId, java.lang.String functionName, Location functionLocation, Location location, java.lang.String url, java.util.List<Scope> scopeChain, RemoteObject _this, RemoteObject returnValue)
Scope(Scope.Type type, RemoteObject object, java.lang.String name, Location startLocation, 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 RemoteObject Modifier and Type Method Description RemoteObject
EventListener. getHandler()
Event handler function value.RemoteObject
EventListener. getOriginalHandler()
Event original handler function value.Constructors in org.openqa.selenium.devtools.domdebugger.model with parameters 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, RemoteObject handler, RemoteObject originalHandler, 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.List<RemoteObject>
LogEntry. getArgs()
Call arguments.Constructor parameters in org.openqa.selenium.devtools.log.model with type arguments of type RemoteObject Constructor Description LogEntry(LogEntry.Source source, LogEntry.Level level, java.lang.String text, Timestamp timestamp, java.lang.String url, java.lang.Integer lineNumber, StackTrace stackTrace, RequestId networkRequestId, java.lang.String workerId, java.util.List<RemoteObject> args)
-
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, ExceptionDetails exceptionDetails)
CallFunctionOnResponse(RemoteObject result, ExceptionDetails exceptionDetails)
EvaluateResponse(RemoteObject result, ExceptionDetails exceptionDetails)
RunScriptResponse(RemoteObject result, 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
ExceptionDetails. getException()
Exception object if available.RemoteObject
PropertyDescriptor. getGet()
A function which serves as a getter for the property, or `undefined` if there is no getter (accessor descriptors only).RemoteObject
InspectRequested. getObject()
RemoteObject
PropertyDescriptor. getSet()
A function which serves as a setter for the property, or `undefined` if there is no setter (accessor descriptors only).RemoteObject
PropertyDescriptor. getSymbol()
Property symbol object, if the property is of the `symbol` type.RemoteObject
InternalPropertyDescriptor. getValue()
The value associated with the property.RemoteObject
PrivatePropertyDescriptor. getValue()
The value associated with the private property.RemoteObject
PropertyDescriptor. getValue()
The value associated with the property.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.Constructors in org.openqa.selenium.devtools.runtime.model with parameters of type RemoteObject Constructor Description ExceptionDetails(java.lang.Integer exceptionId, java.lang.String text, java.lang.Integer lineNumber, java.lang.Integer columnNumber, ScriptId scriptId, java.lang.String url, StackTrace stackTrace, RemoteObject exception, ExecutionContextId executionContextId)
InspectRequested(RemoteObject object, java.util.Map<java.lang.String,java.lang.Object> hints)
InternalPropertyDescriptor(java.lang.String name, RemoteObject value)
PrivatePropertyDescriptor(java.lang.String name, RemoteObject value)
PropertyDescriptor(java.lang.String name, RemoteObject value, java.lang.Boolean writable, RemoteObject get, RemoteObject set, java.lang.Boolean configurable, java.lang.Boolean enumerable, java.lang.Boolean wasThrown, java.lang.Boolean isOwn, RemoteObject symbol)
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, StackTrace stackTrace, java.lang.String context)
-