Class Debugger.SetScriptSourceResponse
java.lang.Object
org.openqa.selenium.devtools.v115.debugger.Debugger.SetScriptSourceResponse
- Enclosing class:
- Debugger
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionSetScriptSourceResponse
(Optional<List<CallFrame>> callFrames, Optional<Boolean> stackChanged, Optional<StackTrace> asyncStackTrace, Optional<StackTraceId> asyncStackTraceId, Debugger.SetScriptSourceResponse.Status status, Optional<ExceptionDetails> exceptionDetails) -
Method Summary
Modifier and TypeMethodDescriptionAsync stack trace, if any.Async stack trace, if any.New stack trace in case editing has happened while VM was stopped.Exception details if any.Whether current call stack was modified after applying the changes.Whether the operation was successful or not.
-
Constructor Details
-
SetScriptSourceResponse
public SetScriptSourceResponse(Optional<List<CallFrame>> callFrames, Optional<Boolean> stackChanged, Optional<StackTrace> asyncStackTrace, Optional<StackTraceId> asyncStackTraceId, Debugger.SetScriptSourceResponse.Status status, Optional<ExceptionDetails> exceptionDetails)
-
-
Method Details
-
getCallFrames
New stack trace in case editing has happened while VM was stopped. -
getStackChanged
Whether current call stack was modified after applying the changes. -
getAsyncStackTrace
Async stack trace, if any. -
getAsyncStackTraceId
Async stack trace, if any. -
getStatus
Whether the operation was successful or not. Only `Ok` denotes a successful live edit while the other enum variants denote why the live edit failed. -
getExceptionDetails
Exception details if any. Only present when `status` is `CompileError`.
-