Class InspectRequested
- java.lang.Object
-
- org.openqa.selenium.devtools.v100.runtime.model.InspectRequested
-
public class InspectRequested extends java.lang.Object
Issued when object should be inspected (for example, as a result of inspect() command line API call).
-
-
Constructor Summary
Constructors Constructor Description InspectRequested(RemoteObject object, java.util.Map<java.lang.String,java.lang.Object> hints, java.util.Optional<ExecutionContextId> executionContextId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<ExecutionContextId>
getExecutionContextId()
Identifier of the context where the call was made.java.util.Map<java.lang.String,java.lang.Object>
getHints()
RemoteObject
getObject()
-
-
-
Constructor Detail
-
InspectRequested
public InspectRequested(RemoteObject object, java.util.Map<java.lang.String,java.lang.Object> hints, java.util.Optional<ExecutionContextId> executionContextId)
-
-
Method Detail
-
getObject
public RemoteObject getObject()
-
getHints
public java.util.Map<java.lang.String,java.lang.Object> getHints()
-
getExecutionContextId
@Beta public java.util.Optional<ExecutionContextId> getExecutionContextId()
Identifier of the context where the call was made.
-
-