What is the difference between these three debugging modes1.Stepinto2.Stepout3. Stepover ?

Questions by Debashish_samanta

Showing Answers 1 - 1 of 1 Answers

swapna

  • Mar 14th, 2006
 

 

step into: the functional key F11 can also use to enable  step into mode:It runs only current line of the test script. If the cuurent line calls a method, the method(or function, any reusable action ) is displayed in the view but is not performed(not execute). 

stepout: the functional key for this step is shift+F11 , after stepinto genrally ir runs, It runs the end of the method(or reusable action or function) then pauses the test run.(it runs the method if any method is viewable or opened by stepinto ), if you want more clearly.. if any method is opened by step into, then stepout executes that opened method

Stepover: the functional key for this step is F10 , it runs only current line of the test script, if current step have the method it executes or performs the entire method but you can't view that method.

  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