Saturday 28 December 2013

QTP Debugging

Debugging Short cut Keys


F11 = Step Into
F10 = (Step over) Step into but not enter into Function
CTRL+F10 = Run Until Step complete

SHIFT+F11 = (Step out) Available only on Run mode. come to end of the method

step into

F11
its goes to each and every steps in scripts.
its goes into loop and loop the step.
its goes into each and every steps in function.
it always visible.

step over

F10
its goes into each every steps in scripts.
its goes into loop and loop the steps.
but its not goes into the function. its executed the function. but its not goes into the function.
its visible only it execution mode.

step out

Shift + F11
its visible only if its goes into the function while execution mode. otherwise its not visible.
its come to last line of the function. its executed the script in function.and come to last line of the function.
its not visible if we not in function while execution mode.

No comments:

Post a Comment