what is Synchronization point in QTP?Can anybody give a
perfect example on it
Thanks in advance
Answers were Sorted based on User's Feedback
Answer / ajay kumar jha
Synchronization point is techniques through which we are
synchronize the execution time and application execution
performance timing.
There are three type of synchronization point
1. Sync
2. Wait
3. Exist
Examples
1. Browser ("XYZ").Page ("ABC").sync
In the above example sync is inbuild function of qtp which
wait till the page is completely loaded. you can give the
maxmum time by Browser ("XYZ").Page ("ABC").sync(10) also.
2. Browser ("XYZ").Navigate ("www.google.com")
Wait (10)
In the above example script will wait for 10 sec. it is
independent to the process of page load.
3. Browser ("XYZ").Page ("ABC").exist(10)
In the above example script will chaeck the existence of
page abc once it found it will execute next step.
10 is the maximum time which is optional.
If you have any doubt then please mail me at
ajayjha101@hotmail.com
If you have any doubt the please revert back to me.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ajay kumar jha
Synchronization point is techniques through which we are
synchronize the execution time and application execution
performance timing.
There are two type of synchronization point
1. Sync
2. Wait
Examples
Browser ("XYZ").Page ("ABC").sync
Or
Browser ("XYZ").navigate ("www.google.com")
Wait (10)
If you have any doubt the please revert back to me.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / nalini
Synchrozination point used to instruct QTP to pause the
test until a particular object property achieves the value
you specify. QuickTest generates a WaitProperty statement
in the Expert View. For example, if you want the run
session to wait up to 10 seconds for the "Flight
Confirmation #" field get visible (true), you insert the
following statement:
Browser("Welcome: Mercury Tours").Page("Flight
Confirmation: Mercury").WebElement("Flight Confirmation
#").WaitProperty "visible", true, 10000
| Is This Answer Correct ? | 5 Yes | 1 No |
While creating Recovery Scenario for Pop-up window..In 'Recovery operation' we have to call a function. Can u tell me that function.
4 Answers Alcatel-Lucent, Ordain Solutions,
Any one knows about descriptive programming to identify objects in a page? Kindly drop me mail prasanna.sabat@gmail.com
Hi, I'm a beginner in QTP and planning of a certification in QTP, but have no idea about it :P. Could anyone please tell me what certifications that a QTP- beginner can take? What is the fees and the syllabus for the certification? Please reply soon. Thanks Vidhya
Is it possible to switch between recording modes during a test creation?
What is the syntax to call one script from another?
How QTP recognize the object??how to add objcts into object repository??
Explain about Table and DB Checkpoints?
how can i do QTP Certification can any 1 tell me . How 1 approch and who to approch
Key word driven framework
What are the views available in quicktest professional?
Which functionalities of QTP used in banking project?
How do u retrieve data from a text file into different variables. i.e. in a text file named "source" , the data is like : india,1000,japan,200,china,50,singapore,45050 this is given in the first line of the text file. in the second line of the text file the dta is: sun,moon,planet,river,earth,water if u use "readline" method by using FSO concept u can retrieve the entire line in to a variable. but i want to import each field (ex: "india" in one variable, "1000" in another variable etc..). Apprecitae proper replies.