How vl i prioritize the actions when i have 10 actions A1,
A2, A3......A10. I want to run action as follows A1,A5,A6
and A10. How i can do it. Thanks in Advance to u.
Answers were Sorted based on User's Feedback
Answer / uday kumar_anem
In QTP, Test Flow combo box is there. By default Action1 is
displayed in that combo box. In that combo box, you can
place the actions in whatever order you want. Just drag the
action up and down, sothat it will placed in one sequence.
During execution, QTP executes the actions asper the Test
Flow Combo box.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rangu
Open the test from folder, go to action folder 0, open
script in note pad, change the action sequence and insert
comments if you dont want to execute.
like as below.
Original actions
Action 1
Action 2
Action 3
Action 4
Action 5
After Modified ( Like below, we need to modify)
Action 1
Action 5
Action 2
'Action 3 // I dont want to execute this action.
Action 4
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / prachiti
we can use keyword driven framework ffor this, the qtp
script will read the corresponding keyword and will import
the perticular actions in the sequence.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / krishnateja muppalla
You can make use of call to action while creating scripts. Right click on expert view. There you can see the options to call another action from current action.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ashish srivastava
Ans No 1 and Ans No 3 Both are Correct
These Are two different method to solve the problem
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pravati
through call to Existing action
Runaction "Actionname",oneIteration
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anil
Can we Automate GUI of the Application by using QTP.? if
yes then how.?
| Is This Answer Correct ? | 0 Yes | 2 No |
how to merge 2 object repositories in qtp 9.0.what is use of merge and y merge is used?
Can anybody give the script of below things. 1. Add sheet 2. Adding columns 3. Set the values in that columns(In the rows) 4. Close the sheet 5. How can we create 3 sheets in one Excel sheet??
Does quicktest professional is unicode compatible?
How can i open 5 multiple browser at once through QTP VB script and i want to login with 5 different credentials i already tried with this code but its entering credentials only for first browser and am using datatable to parameterize
explain virtual object? in detailed? pls any one explain me?
what are the 5 types of objects in qtp
What is dynamic arrays
I have below user Defained function function AddTwo(ByVal a, ByVal b) Dim Ans Ans=a+b MsgBox Ans End function Now my question comes here...from given below methods which method is right to call above function?Which is Wrong and why? 1. AddTwo(2,4) 2. Call AddTwo(2,4) 3. AddTwo 2,4 4. Call AddTwo 2,4
actually how many hours per one day we will work on automation(qtp) in real time
What is the differnce between action & script
i have data in excel sheet.i imported the data in data table.while doing parameterization,how the code knows it is a valid or invalid data?
What do you mean by checkpoints in qtp?