what is synchronization point, synchronization method, wait
property method? with examples.. plz explain this in brief
Answer Posted / nilanjan saha
Hi ,
The name "Synchronization Point" itself says it all.Actually
it is nothing but to inform QTP to wait till some specified
condition occurs. You can specify the conditions.
We need Synchronization Point because we are always not sure
how much time it takes for an Object to get loaded to a
page/window.
Let's take an example of "Login" page of any application.
You want to provide "UserName" in the UserName field after
opening the site via QTP.We can provide value only after
"UserName" field is visible. But sometime it may take 10
seconds for the "UserName" field to be appear in the Login
page. Sometime it may take 30 seconds (Depends upon the
internet speed).At this point QTP script fails as the object
is not displayed in the page. So here what we do through
"Synchronization Point" is to tell QTP to wait untill the
"UserName" field appears on the page, may it take 10 secs or
30 secs.
There are 2 ways (for Web Application) you can acheive this
as follows:
Quote:> Browser("").Sync (Only in case of Web App) : QTP
waits untill all the objects are loaded to the Browser
> WaitProperty (Any type of App) : QTP waits untill the
specified condition is satisfied
Following is an example of "WaitProperty"
Quote:Syntax: Object.WaitProperty "Property
Type","Property Value",TimeOut
Ex:
Browser("Login").Page("Login").WebEdit("UserName").WaitProperty
"visible",True,20000
It means that QTP will 20000 ms ,by that time if that above
editbox appears then script will run the rest of the scripts
. If in the mean time that editbox field appears with in 10
sec, then QTP will stop waiting and will continue with the
script, so thats how extra 10 secs will be not wasted.
But is case some one give hard-coded Wait(20) , then anyhow
QTP will wait for mentioned 20 sec even that editbox got
loaded earlier.
Hope that above explanation will help.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Dis advantages of XML checkpoint ?
how to test use the quality control .how to verify the image verification
Can we record an application running on a remote machine using qtp?
Consider one application is open, clicking one menu will open another application in another browser. QTP does not catch the URL of the second browser(second application). can we capture it ?
What are the different properties of an web object
what is stepin & stepout?
Could i know how how to explain keyword driven framework in interview? If any body knows plz send the explanation.
How will you check that your test cases covered all the requirements?
What are the different kinds of test steps?
In QA Testing when do you use Loadrunner vs QTP? What are the main differences between those two tools? Explain the purpose with real world scenario examples...In advance thank you!!!
What are the key points to create a framework in QTP for oracle forms?
What is the expert view?
any body can you help me what is the script to automate an comand promt
we use a file extension .properties why is it used and where do we use it plz help me out with detailed explanation and navigation of how to use on the QTP 8.2?
What does mean by Scope of Automation?n How we defined it?