Class ExecutionContextDescription
java.lang.Object
org.openqa.selenium.devtools.v126.runtime.model.ExecutionContextDescription
Description of an isolated world.
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionContextDescription
(ExecutionContextId id, String origin, String name, String uniqueId, Optional<Map<String, Object>> auxData) -
Method Summary
Modifier and TypeMethodDescriptionEmbedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}getId()
Unique id of the execution context.getName()
Human readable name describing given context.Execution context origin.A system-unique execution context identifier.
-
Constructor Details
-
ExecutionContextDescription
-
-
Method Details
-
getId
Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed. -
getOrigin
Execution context origin. -
getName
Human readable name describing given context. -
getUniqueId
A system-unique execution context identifier. Unlike the id, this is unique across multiple processes, so can be reliably used to identify specific context while backend performs a cross-process navigation. -
getAuxData
Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
-