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

LINUX environment supports QTP or not? LINUX environment supports QC or not?

4 Answers  


Hi frnds, for ex.. we got a job in wipro, they will give me one mail id.. "Rameshkumar@wipro.com", where to open this mail id..in which sw ? or outlook?

1 Answers  


Explain abt the File System Object in QTP with ex

3 Answers   Ordain Solutions,


what are the different types of framesworks in QTP?what is the keyword driven framework?

2 Answers   Mindlance,


How to load a object repository in QTP during runtime?

2 Answers   BNP Paribas, Virtusa,






hi friends can anyone tell me where can i find descriptive programming material please send me the link also,from which i can download the material

1 Answers  


what is the use of automation objective model?where is used? plz tell me

2 Answers  


Does quicktest professional is unicode compatible?

0 Answers  


How to retrieve the data from database?

6 Answers   Wipro,


hi guys, pls tell me for testing institution training hub, hitech city is best or not?

0 Answers  


what is standalone database

1 Answers   Wipro,


I want to run my qtp scipt on the system where qtp is not installed .I don't want to install qtp but i want that system should use the qtp from another system in lan just the qtp instance should be launched on that system without having qtp installed on it .I probably know the solution that it will be solved through RMI but how to get this problem solved plz help i anyone know the answer

4 Answers   Cimcon,


Categories