Break | Pauses to interrupt the running code in the test. |
Go | Continues running the test until the end or to the next breakpoint. |
Step Into | Increments 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 Over | If 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 Out | Progresses the execution to the next line outside of the current function. |
Break on Exceptions | Continues running the test script until an exception occurs. |
Break on Function Enter | Continues and then breaks once you reach a new function. |
Break on Function Return | Continues and then breaks once you reach the end of the current function. |