Uses of Class
org.openqa.selenium.devtools.debugger.model.CallFrameId
-
Packages that use CallFrameId Package Description org.openqa.selenium.devtools.debugger org.openqa.selenium.devtools.debugger.model -
-
Uses of CallFrameId in org.openqa.selenium.devtools.debugger
Methods in org.openqa.selenium.devtools.debugger with parameters of type CallFrameId Modifier and Type Method Description static Command<Debugger.EvaluateOnCallFrameResponse>
Debugger. evaluateOnCallFrame(CallFrameId callFrameId, java.lang.String expression, java.util.Optional<java.lang.String> objectGroup, java.util.Optional<java.lang.Boolean> includeCommandLineAPI, 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> throwOnSideEffect, java.util.Optional<TimeDelta> timeout)
Evaluates expression on a given call frame.static Command<Debugger.RestartFrameResponse>
Debugger. restartFrame(CallFrameId callFrameId)
Restarts particular call frame from the beginning.static Command<java.lang.Void>
Debugger. setVariableValue(java.lang.Integer scopeNumber, java.lang.String variableName, CallArgument newValue, CallFrameId callFrameId)
Changes value of variable in a callframe. -
Uses of CallFrameId in org.openqa.selenium.devtools.debugger.model
Methods in org.openqa.selenium.devtools.debugger.model that return CallFrameId Modifier and Type Method Description CallFrameId
CallFrame. getCallFrameId()
Call frame identifier.Constructors in org.openqa.selenium.devtools.debugger.model with parameters of type CallFrameId 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)
-