What is the real use of different actions in QTP
Answers were Sorted based on User's Feedback
Answer / maruthi
Hi..take a simple example.
Test1:has a scenario like this
a)login
b)compose a mail
c)logoff
and Test 2: has a scenario like
a)login
b)delete a selected mail
c)log-off
so if u create login as one action and log-off as another
action in Test 1 then these two actions can be used in Test
2 instead of creating two actions again.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pravati
we use diff actions to devide the different functions in diff actions.
| Is This Answer Correct ? | 0 Yes | 0 No |
if Object repository contain x and y properties. we do not know whether they are mandatory or assistive properties. While executing the script qtp will use both the properties or only sufficient properties to identify the object. It means it use OR (or) AND
What are the check points can be inserted without recording?
when we open flight reservation.at that time where we found synchronization point() and wait function().i m confused .i want this answer.
I installed QTP 9.5 on vista. Can someone please provide me the license key of the same. Thanks, Avi
What is quick test pro?
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 to capture screen shots when an error occurs?
Name the different types of recording modes?
If an application name changes frequently i.e while recording it has the name, in this case, how do qtp handles?
How to see the screens after running test in QTP?
Plz explain about InTERNAl Environment variable, External environment variable,builtin environment variables with examples?
how can we know the program is testing by multiple test data in data driven frame work?