step-in, step-out , step-over
Printed From: One Stop Testing
Category: Testing Tools @ OneStopTesting
Forum Name: QuickTest Pro @ OneStopTesting
Forum Discription: QuickTest Pro is a fresh approach to automated software and application testing that addresses testing needs of both business analysts and Quality Assurance professionals.
URL: http://forum.onestoptesting.com/forum_posts.asp?TID=3972
Printed Date: 18Jul2025 at 2:17am
Topic: step-in, step-out , step-over
Posted By: kannalu45
Subject: step-in, step-out , step-over
Date Posted: 20Dec2007 at 6:28am
In QTP what is the difference between Step-in, Step-out, Step-over
|
Replies:
Posted By: ram7vasu
Date Posted: 18Mar2008 at 3:54am
Step Into
Choose Debug > Step Into, click the Step Into button , or press F11 to run only the current line of the active test or function library. If the current line of the active test or function library calls another action or a function, the called action/function is displayed in the QuickTest window, and the test or function library pauses at the first line of the called action/function.
Step Out
Choose Debug > Step Out, click the Step Out button , or press Shift+F11 only after using Step Into to enter an action or a user-defined function. Step Out runs to the end of the called action or user-defined function, then returns to the calling test or function library and pauses the run session.
Step Over
Choose Debug > Step Over, click the Step Over button , or press F10 to run only the current step in the active test or function library. 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 or function script is not displayed in the QuickTest window
------------- RAM SAKSOFT
|
Posted By: v_selvam
Date Posted: 08Apr2008 at 4:33am
These key are used to debug the script.
|
Posted By: kathirvel
Date Posted: 06May2008 at 8:01am
step in :
it can be used to execute the current line of the script. if
the current line is function or method than it call the
function or method but it vl not run.
step out:
it can be used to execute the function or method which is
called step into mode
step over:
it can be used to execute the current line of the script. if
the current line is function or method than it call the
function or method and execute that function
|
|