Answer Posted / shankar
2 types: 1. wait()
2. Synchronization point
1. Wait(): pause the test for fixed time specified in the
wait statement.
2. Synchronization point: To define the time mapping
between the QTP and application, we use this concept. If we
dont want to perform any operation until an object in our
application achieves certain status then we can insert
synchronization point to instruct QTP to pause the test
until the object getting the certain value.
| Is This Answer Correct ? | 19 Yes | 0 No |
Post New Answer View All Answers
how can i pass a "automation script" as a parameter in a function give me need full suggestion thank inadvance
Want to verify notepad reports using QTP framework or any other BV script method. Can anyone share the method to achieve it? Eg. Person Name is the header and the actual name is John then how can we verify weather person name is John
How to data driven test for Win objects in QTP ?
what is stepin & stepout?
Which HTML specification will be adhered to? How strictly? What variations will be allowed for targeted browsers?
How to creating an output value using quicktest professional?
How many types of status are there?
Hi Samrat, Thank u very much, what u said it is right.
How you can write contexts to text file in qtp?
What is regular expression?
how to acess a test in RSA?
Explain the concept of object repository and how QTP recognizes objects?
If object is not recognized by qtp but the object is standard object what is your approach?
I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing
How u will do versioning in QTP?