How to track the execution time?
Answers were Sorted based on User's Feedback
Answer / sonal.pagare
StartTime = Timer
EndTime = Timer
TimeDiff = EndTime - StartTime
DataTable("TimeTaken",dtLocalSheet) = TimeDiff
Services.StartTransaction "Title"
Services.EndTransaction "Title"
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / uday
You can view your test execution time in the Test Results
without writing any code.
In test results, you can see how much time it took to
execute the whole test(start time and end time).
You can also view how much time it took to execute each
action aswell.
If you want to programatically, see the time difference, use
the below code:
time1=time
'put all your code here
time2=time
msgbox(time2-time1)
| Is This Answer Correct ? | 0 Yes | 0 No |
what is main diff of qtp8.2 and qtp9.0?
How to suppress warnings from the test results page?
UFT 12.02 which ALM version will support
what is the difference between testing and debugging?
can any one please tell me QTP 9.2 supports which version of IE and Mozilla firefox.
what is the difference between development and testing
what is meant by iterative model?What is its working principle?What are its advantages and what are its drawbacks?
Explain qtp(quick test professional)?
For which type of project the iterative model is suitable?
Is there is any method how to connect remote desk throw QTP if yes please answer with a example?
any body plz send health care domain project to me with explanation any two modules on that project. mail_id: ranjith_99reddy@yahoo.co.in
I have a Webtable object in my shared object repository, say WT1, which has different index value in 2 different versions, one version having WT1's index value as 1 and other version having WT1's index value as 2. how could i use same test script to identify the WT1 object having different index values.