Hi What are re-usable actions in QTP?
-Thank You
Answers were Sorted based on User's Feedback
In a test there will be some action if any action in a test
is useful in another test then we are going to use that
action as re-usable action then we going to that action in
another test
NOTE :We can use a action of one test in another test if
that action is change into re-usable action
if any wrong in this answer inform to me plz.........
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / rohini
Reusable actions are like functions in programming. when
you have a process that needs to be included in several
places in the testscript you can record and save it as a
reusable action. (Check the reusable checkbox while
recording the action). Then you can call this action from
other tests instead of recording and modifying each time,
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / bantanahal haribabu
An Action That can be called multiple times by the test and also another test with wich it is stored(the local data),as well as by other test.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sravanthi
these r the actions which r reusable in another actions. we
can also make non reusable actions into reusable actions .
for this we have 2 follow this navigation
record our reqs operation->step menu->action properties-
>select reusable actions
| Is This Answer Correct ? | 1 Yes | 3 No |
Explain me in deatail about DATADRIVEN framework including scripts ?(realtimes plz)(Chandana)
How to compare the two strings?
what is the difference between parameters and arguments?
How can I use Call dlls in QTP ?
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 create configuration scripts
What is the syntax to call one script from another? And what can be the syntax to call one “action” in another?
how to post xml data from QTP scripts to any application?
Difference between object identification and smart identification
How do u override the meaning of a standard object in QTP?
what is regular expression how will you implement it?
What are the drawbacks of QTP?