NextGen Knowledge Center

Debug Menu

NameDescription
BreakPauses to interrupt the running code in the test.
GoContinues running the test until the end or to the next breakpoint.
Step IntoIncrements the execution by one line. If the next line is inside a function, then the interruption will step into the function allowing the view of the context within.
Step OverIf the current function has been called by another function, then Step Over returns to the previous function. Otherwise it continues running the test to the end or to the next breakpoint (like the Go function).
Step OutProgresses the execution to the next line outside of the current function.
Break on ExceptionsContinues running the test script until an exception occurs.
Break on Function EnterContinues and then breaks once you reach a new function.
Break on Function ReturnContinues and then breaks once you reach the end of the current function.