Uses of Class
org.openqa.selenium.devtools.runtime.model.RemoteObjectId
-
-
Uses of RemoteObjectId in org.openqa.selenium.devtools.debugger
Methods in org.openqa.selenium.devtools.debugger with parameters of type RemoteObjectId Modifier and Type Method Description static Command<BreakpointId>Debugger. setBreakpointOnFunctionCall(RemoteObjectId objectId, java.util.Optional<java.lang.String> condition)Sets JavaScript breakpoint before each call to the given function. -
Uses of RemoteObjectId in org.openqa.selenium.devtools.dom
Methods in org.openqa.selenium.devtools.dom with parameters of type RemoteObjectId Modifier and Type Method Description static Command<java.lang.String>DOM. getFileInfo(RemoteObjectId objectId)Returns file information for the given File wrapper.static Command<NodeId>DOM. requestNode(RemoteObjectId objectId)Requests that the node is sent to the caller given the JavaScript node object reference. -
Uses of RemoteObjectId in org.openqa.selenium.devtools.domdebugger
Methods in org.openqa.selenium.devtools.domdebugger with parameters of type RemoteObjectId Modifier and Type Method Description static Command<java.util.List<EventListener>>DOMDebugger. getEventListeners(RemoteObjectId objectId, java.util.Optional<java.lang.Integer> depth, java.util.Optional<java.lang.Boolean> pierce)Returns event listeners of the given object. -
Uses of RemoteObjectId in org.openqa.selenium.devtools.heapprofiler
Methods in org.openqa.selenium.devtools.heapprofiler with parameters of type RemoteObjectId Modifier and Type Method Description static Command<HeapSnapshotObjectId>HeapProfiler. getHeapObjectId(RemoteObjectId objectId) -
Uses of RemoteObjectId in org.openqa.selenium.devtools.io
Methods in org.openqa.selenium.devtools.io with parameters of type RemoteObjectId Modifier and Type Method Description static Command<java.lang.String>IO. resolveBlob(RemoteObjectId objectId)Return UUID of Blob object specified by a remote object id. -
Uses of RemoteObjectId in org.openqa.selenium.devtools.runtime
Methods in org.openqa.selenium.devtools.runtime with parameters of type RemoteObjectId Modifier and Type Method Description static Command<Runtime.AwaitPromiseResponse>Runtime. awaitPromise(RemoteObjectId promiseObjectId, java.util.Optional<java.lang.Boolean> returnByValue, java.util.Optional<java.lang.Boolean> generatePreview)Add handler to promise with given promise object id.static Command<Runtime.GetPropertiesResponse>Runtime. getProperties(RemoteObjectId objectId, java.util.Optional<java.lang.Boolean> ownProperties, java.util.Optional<java.lang.Boolean> accessorPropertiesOnly, java.util.Optional<java.lang.Boolean> generatePreview)Returns properties of a given object.static Command<RemoteObject>Runtime. queryObjects(RemoteObjectId prototypeObjectId, java.util.Optional<java.lang.String> objectGroup)static Command<java.lang.Void>Runtime. releaseObject(RemoteObjectId objectId)Releases remote object with given id.Method parameters in org.openqa.selenium.devtools.runtime with type arguments of type RemoteObjectId Modifier and Type Method Description static Command<Runtime.CallFunctionOnResponse>Runtime. callFunctionOn(java.lang.String functionDeclaration, java.util.Optional<RemoteObjectId> objectId, java.util.Optional<java.util.List<CallArgument>> arguments, java.util.Optional<java.lang.Boolean> silent, java.util.Optional<java.lang.Boolean> returnByValue, java.util.Optional<java.lang.Boolean> generatePreview, java.util.Optional<java.lang.Boolean> userGesture, java.util.Optional<java.lang.Boolean> awaitPromise, java.util.Optional<ExecutionContextId> executionContextId, java.util.Optional<java.lang.String> objectGroup)Calls function with given declaration on the given object. -
Uses of RemoteObjectId in org.openqa.selenium.devtools.runtime.model
Methods in org.openqa.selenium.devtools.runtime.model that return RemoteObjectId Modifier and Type Method Description RemoteObjectIdCustomPreview. getBodyGetterId()If formatter returns true as a result of formatter.hasBody call then bodyGetterId will contain RemoteObjectId for the function that returns result of formatter.body(object, config) call.RemoteObjectIdCallArgument. getObjectId()Remote object handle.RemoteObjectIdRemoteObject. getObjectId()Unique object identifier (for non-primitive values).Constructors in org.openqa.selenium.devtools.runtime.model with parameters of type RemoteObjectId Constructor Description CallArgument(java.util.Map<java.lang.String,java.lang.Object> value, UnserializableValue unserializableValue, RemoteObjectId objectId)CustomPreview(java.lang.String header, RemoteObjectId bodyGetterId)RemoteObject(RemoteObject.Type type, RemoteObject.Subtype subtype, java.lang.String className, java.util.Map<java.lang.String,java.lang.Object> value, UnserializableValue unserializableValue, java.lang.String description, RemoteObjectId objectId, ObjectPreview preview, CustomPreview customPreview)
-