How to use different debuging modes in QTP

Showing Answers 1 - 1 of 1 Answers

Deepak

  • Aug 4th, 2006
 

Step INto
To run only the current line of the active tesdt or component.
Step Out
Step Out runs to the end of the called action or user-defined function, then returns to the calling action and pauses the run session.
Step Over
to run only the current step in the active test or component. When the current step calls another action or a user-defined function,the called action or function is executed in its entirety, but the called action script is not displayed in the QuickTest window.
Ex:Execute this below code
public Function myfunc()
msgbox "one"
msgbox "two"
msgbox "three"
End Function
myfunc 'Insert Break Point here "use the
myfunc 'Step Into F11, Step Out Shift F11, and Step Over F10 commands
myfunc

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions