Class Paused
- java.lang.Object
-
- org.openqa.selenium.devtools.debugger.model.Paused
-
public class Paused extends java.lang.ObjectFired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPaused.Reason
-
Constructor Summary
Constructors Constructor Description Paused(java.util.List<CallFrame> callFrames, Paused.Reason reason, java.util.Map<java.lang.String,java.lang.Object> data, java.util.List<java.lang.String> hitBreakpoints, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, StackTraceId asyncCallStackTraceId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StackTraceIdgetAsyncCallStackTraceId()Just scheduled async call will have this stack trace as parent stack during async execution.StackTracegetAsyncStackTrace()Async stack trace, if any.StackTraceIdgetAsyncStackTraceId()Async stack trace, if any.java.util.List<CallFrame>getCallFrames()Call stack the virtual machine stopped on.java.util.Map<java.lang.String,java.lang.Object>getData()Object containing break-specific auxiliary properties.java.util.List<java.lang.String>getHitBreakpoints()Hit breakpoints IDsPaused.ReasongetReason()Pause reason.
-
-
-
Constructor Detail
-
Paused
public Paused(java.util.List<CallFrame> callFrames, Paused.Reason reason, java.util.Map<java.lang.String,java.lang.Object> data, java.util.List<java.lang.String> hitBreakpoints, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, StackTraceId asyncCallStackTraceId)
-
-
Method Detail
-
getCallFrames
public java.util.List<CallFrame> getCallFrames()
Call stack the virtual machine stopped on.
-
getReason
public Paused.Reason getReason()
Pause reason.
-
getData
public java.util.Map<java.lang.String,java.lang.Object> getData()
Object containing break-specific auxiliary properties.
-
getHitBreakpoints
public java.util.List<java.lang.String> getHitBreakpoints()
Hit breakpoints IDs
-
getAsyncStackTrace
public StackTrace getAsyncStackTrace()
Async stack trace, if any.
-
getAsyncStackTraceId
@Beta public StackTraceId getAsyncStackTraceId()
Async stack trace, if any.
-
getAsyncCallStackTraceId
@Beta public StackTraceId getAsyncCallStackTraceId()
Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after `Debugger.stepInto` call with `breakOnAsynCall` flag.
-
-