Uses of Class
org.openqa.selenium.devtools.runtime.model.ExecutionContextId
-
-
Uses of ExecutionContextId in org.openqa.selenium.devtools.debugger.model
Methods in org.openqa.selenium.devtools.debugger.model that return ExecutionContextId Modifier and Type Method Description ExecutionContextId
ScriptFailedToParse. getExecutionContextId()
Specifies script creation context.ExecutionContextId
ScriptParsed. getExecutionContextId()
Specifies script creation context.Constructors in org.openqa.selenium.devtools.debugger.model with parameters of type ExecutionContextId Constructor Description ScriptFailedToParse(ScriptId scriptId, java.lang.String url, java.lang.Integer startLine, java.lang.Integer startColumn, java.lang.Integer endLine, java.lang.Integer endColumn, ExecutionContextId executionContextId, java.lang.String hash, java.util.Map<java.lang.String,java.lang.Object> executionContextAuxData, java.lang.String sourceMapURL, java.lang.Boolean hasSourceURL, java.lang.Boolean isModule, java.lang.Integer length, StackTrace stackTrace)
ScriptParsed(ScriptId scriptId, java.lang.String url, java.lang.Integer startLine, java.lang.Integer startColumn, java.lang.Integer endLine, java.lang.Integer endColumn, ExecutionContextId executionContextId, java.lang.String hash, java.util.Map<java.lang.String,java.lang.Object> executionContextAuxData, java.lang.Boolean isLiveEdit, java.lang.String sourceMapURL, java.lang.Boolean hasSourceURL, java.lang.Boolean isModule, java.lang.Integer length, StackTrace stackTrace)
-
Uses of ExecutionContextId in org.openqa.selenium.devtools.page
Methods in org.openqa.selenium.devtools.page that return types with arguments of type ExecutionContextId Modifier and Type Method Description static Command<ExecutionContextId>
Page. createIsolatedWorld(FrameId frameId, java.util.Optional<java.lang.String> worldName, java.util.Optional<java.lang.Boolean> grantUniveralAccess)
Creates an isolated world for the given frame. -
Uses of ExecutionContextId in org.openqa.selenium.devtools.runtime
Methods in org.openqa.selenium.devtools.runtime that return types with arguments of type ExecutionContextId Modifier and Type Method Description static Event<ExecutionContextId>
Runtime. executionContextDestroyed()
Method parameters in org.openqa.selenium.devtools.runtime with type arguments of type ExecutionContextId Modifier and Type Method Description static Command<java.lang.Void>
Runtime. addBinding(java.lang.String name, java.util.Optional<ExecutionContextId> executionContextId)
If executionContextId is empty, adds binding with the given name on the global objects of all inspected contexts, including those created later, bindings survive reloads.static Command<Runtime.CompileScriptResponse>
Runtime. compileScript(java.lang.String expression, java.lang.String sourceURL, java.lang.Boolean persistScript, java.util.Optional<ExecutionContextId> executionContextId)
Compiles expression.static Command<java.util.List<java.lang.String>>
Runtime. globalLexicalScopeNames(java.util.Optional<ExecutionContextId> executionContextId)
Returns all let, const and class variables from global scope.static Command<Runtime.RunScriptResponse>
Runtime. runScript(ScriptId scriptId, java.util.Optional<ExecutionContextId> executionContextId, java.util.Optional<java.lang.String> objectGroup, java.util.Optional<java.lang.Boolean> silent, java.util.Optional<java.lang.Boolean> includeCommandLineAPI, java.util.Optional<java.lang.Boolean> returnByValue, java.util.Optional<java.lang.Boolean> generatePreview, java.util.Optional<java.lang.Boolean> awaitPromise)
Runs script with given id in a given context. -
Uses of ExecutionContextId in org.openqa.selenium.devtools.runtime.model
Methods in org.openqa.selenium.devtools.runtime.model that return ExecutionContextId Modifier and Type Method Description ExecutionContextId
BindingCalled. getExecutionContextId()
Identifier of the context where the call was made.ExecutionContextId
ConsoleAPICalled. getExecutionContextId()
Identifier of the context where the call was made.ExecutionContextId
ExceptionDetails. getExecutionContextId()
Identifier of the context where exception happened.ExecutionContextId
ExecutionContextDescription. getId()
Unique id of the execution context.Constructors in org.openqa.selenium.devtools.runtime.model with parameters of type ExecutionContextId Constructor Description BindingCalled(java.lang.String name, java.lang.String payload, ExecutionContextId executionContextId)
ConsoleAPICalled(ConsoleAPICalled.Type type, java.util.List<RemoteObject> args, ExecutionContextId executionContextId, Timestamp timestamp, StackTrace stackTrace, java.lang.String context)
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)
ExecutionContextDescription(ExecutionContextId id, java.lang.String origin, java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> auxData)
-