what is synchronization point, synchronization method, wait
property method? with examples.. plz explain this in brief
Answer Posted / harishkumar
The Time mapping between Execution time of QTP and Elapsed Time of the Application is called Synchronize Test Script
In The fallowing Scenarios we Synchronize Test Script
1. When Application Performing Some Back-End Operations like Insert,Delete, Update
2.During Application Launching(Browser navigation time out parameter)
3.When Application Open Sub window or page (Page lodingtime)
4.to reach Status bar 100% color filled
Wait Property Method:using this method we can pass the Execution based on Application Object Property value as reference
Syntax:
Hierarchy of the Object . WaitProperty propertyname , propertyvalue
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Both static and dynamic arrays are handled by the vb script. Is it true?
How do you do batch testing in wr & is it possible to do in qtp, if so explain?
Dis advantages of XML checkpoint ?
i am a begnner so am learning Error handling :tried using Recovery manager didnt work i want to be able to handle errors , e.g. if while running the test the folwoing does not show up then how can i use the If then else and goto next step in the test, as in many scenarios it does not show up Browser("The Shopping Channel -").Page("The Shopping Channel -_8").Image("easy pay").Click
How to associate function library at a run time?
How will you find the current time of the remote machine using QTP script?
How do client side image and server side image work?
Hi frnds, does anybody know if there is anything called "thin point" or something in qtp? thanks in advance.
action contains public and private functions but do we resuable that action or not..If it is reusable How..plz tell me the ans
Which advantages helping QTP to hold the position of "Market Leader" for such a long period?
What are the differences between table and db checkpoints?
How to save your test using quicktest professional?
Hi Friends, Can anyone help me out in this one? In QTP, I am using Data Driver and want to parameterise multiple values (say 3 values ) for a field. How can I do it using Data Driver wizard? Plz mention it step-by-step. In the end after doing the needful, on opening the Data Driver window, how can I get number (i.e. 3) in the Parameterised column for that particualr value? Thanks a lot in advance.
What is ‘object spy’ and what is the function of object spy in qtp?
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian