What is the use of command tab in Debug viewer ?can we execute any user defined queries

Showing Answers 1 - 4 of 4 Answers

sivakumar

  • Jul 14th, 2006
 

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 component. If the current line of

the active test or component calls another action or a function, the called

action/function is displayed in the QuickTest window, and the test or

component pauses at the first line of the called action/function.

Step Out

Choose Debug > Step Out or click the Step Out button, or press SHIFT+F11

only after using Step Into to enter a 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 action and pauses the run session.

Step Over

Choose Debug > Step Over or click the Step Over button, or press F10 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.

  Was this answer useful?  Yes

prasanna82

  • Jul 20th, 2006
 

while debugging your script, using command tab you can execute a line of script to change or set the current value of a variable or object. Further execution of your test will use the changed value.

  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