Debugging Methods
Debugging Methods
PAUSE :
Pause is used to suspend the Run Session temporarily.
STEP INTO :
1. Runs only Current Line of the Test Script
2. If Current line calls a method, the method is displayed in
the View but is not performed.
3. We can use Key F11 on the Keyboard.
STEP OVER :
1. Runs only Current Line of the Test Script
2. When a Current line calls a method, the method is
performed but is not displayed in the View.
3. We can use Key F10 on the Keyboard.
STEP OUT :
1. Runs to the End of the method then pauses the Run
Session.
2. This Method is available only when we are using STEP
INTO.
3. We can use Key Shift+F11 on the Keyboard.
RUN TO STEP :
1. Runs until the Current Step of the Test Script
2. We can use Key Ctrl+F10 on the Keyboard.
DEBUG FROM STEP :
1. Runs from the Selected step instead of starting from the
first step of the Test Script
BREAK POINT :
1. Break
Point
is
used
to
pause
Run
Session
at