what is synchronization point, synchronization method, wait
property method? with examples.. plz explain this in brief

Answers were Sorted based on User's Feedback



what is synchronization point, synchronization method, wait property method? with examples.. plz e..

Answer / 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

what is synchronization point, synchronization method, wait property method? with examples.. plz e..

Answer / 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

what is synchronization point, synchronization method, wait property method? with examples.. plz e..

Answer / nitin sharma

Synchronisation is a process which we use for performing
better excecution and results in QTP.
Why we use: QTP gives instruction one by one with the same
speed while AUT have more speed for some operation of
exceution and less speed for some operation of
excution.So,for better results and execution we use
Syncronization process.
We can use it by inserting:
1.Sync Property:It allows specific time for page to
navigate until it goes to next step.for eg: Browser
("Google").Page("Google").Sync
2.Wait Property:Here we are forcing QTP to wait before
going to next step.Suppose we have given Wait(10) and
object can display in 6 sec then it will wait for 4 sec
more. Systemutil.Run"http://www.google.com/"
Wait(10)
3.Inserting Synchronization points:We can insert through
Insert>Syncronization point.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More QTP Interview Questions

What is the latest version in QTP?

55 Answers   Bharti, Polaris, US Technology,


How to call .vbs funtion , Library files in QTP? plz Explain indetail(chandana)

6 Answers   Wipro,


How we test web based application by using QTP

0 Answers  


explain structured testing? plz guys with exp. do answer

0 Answers  


how we connect oracle or sql data server database to qtp.

4 Answers   TCS,






How smart identification works in qtp ?

0 Answers  


I opened gmail login into gmail and i have to save (Pass or move) all the mail into notepad please give me code Thanks of all

0 Answers   Wipro,


What is object spy in quicktest professional (qtp)?

0 Answers  


Can I record on netscape browser does it require any special settings ?

2 Answers  


Can we use Virtual Objects in Discriptive Programming?

5 Answers   Keane India Ltd,


Please clarify Automation and QTP both(names) are same or diff?

1 Answers  


i ve an excel in a QC folder. Thru my QTP script i want to open that excel in runtime. I am running this script from QC itself

4 Answers   TCS,


Categories