How to pass parameters into an action.Please explain me
with examples
Answers were Sorted based on User's Feedback
Answer / akshar
hi u can pass parameters into different actions by
navigating to file in qtp there go to settings tab & click
on parameters tab where you can specify the name ,type &
the default value of it..Apply it & use it in your
script..If you have not understood write to me
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / pk
First you have to declare the Input/Output Parameters in the
Action Properties (Right click action icon and select). Then
you can access these parameters through the Parameter object.
Say you have declared two Input parameters
a (as number, value= 25) and
b ( as number, value = 30)
Then you can access these Action input parameter with in the
action using
c = parameter("a")+parameter("b")
msgbox c (should display 55)
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / deepakm82
Hi Rayudu,
i will take the example that you have taken.
C = a + b
Now you want a and b to be parameterized.
So for that you have to pass the value of a and b using the
datatable in QTP.
Select 2 columns in datatable and name them Value_1 and
Value_2.You can choose either Global datatable or action
datatable.Suppose you choose Global datatable.
Now put a value say 3 under column Value_1 and put another
value say 5 under column Value_2.
Now this is how you gonna write it:
c= Datatable.value("Value_1",dtglobalsheet) +
Datatable.value("Value_2",dtglobalsheet)
Now is this solve your problem? or if you have any further
queries then just reply...
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rayudu
I know that what u have explained.But how to use those
parameteres in a an action.I want the script that how to
use input action parameters.That is why I already asked
that I want explanation with examples.
suppose I want to pass 2 values for a,b and would like to
get the result in "c". see below code
c=int(a)+int(b)
How should I pass parameters here and how should i write
the code for passing parameters.How should i call that
action. give me the detailed exp..
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / rayudu
Thanks for your reply Deepak! But my question is not that.
By using Action Parameters.EX: I would like to enter the
values in Parameter tab of the Action properties.
Name type Defaultvalue description
A Number 25 First value
B Number 30 Second value
My question is How should validate these values in a script
c=int(a)+int(b)
I am calling this action in another action like
RunAction Action1,Oneiteration
But it did not resulted 55.
I know how to pass parameters through datatable.
Please answer it if u know
Is This Answer Correct ? | 0 Yes | 2 No |
I have qtp 9.5 demo ver,I am not able to record the yahoo broeser.so anyone can tell me what setting i have to do in QTP for yahoo brower recording. why its not recognise the object of yahoo browser????
How u will open the build automatically in QTP except using Systemutil.run command
How to enable the text check point in qtp? By default it is disables
1 Answers Sify, ssinformatics,
How to use reporter.report event in qtp ?
WHAT IS OBJECT REPROSITORY?
We have 10 rows of records in data table, but we have to run 4th, 5th and 6th rows only. How can we handle this scenario in QTP?
5 Answers Accenture, Banca Sella, Polaris,
I want to do Certification course in QTP. For this I request you to suggest the best Tutorial in PDF format, if possible, kinldy mail PDF file to my mail-ID: ramakrishna908@gmail.com Regards, krishna.
Hi friends, In a particular test how many maximum call to new actions we can call?It reusable or normal actions what ever it is .
w is output value
I have 5 save buttons in 5 tabs . The tabs are placed one after the other. My object repository have these added as 5 save buttons with name sav1, save 2, save 3 , save 4, save 5 .all are getting highlighted from OR but they are not getting clicked. After spying each button all the properties are same except First button Index 0 html id:=btnSaveTab1 outerhtml:=<input id=""btnSaveTab1"" class=""Button"" onclick=""document.getElementById('a1').click();"" name=""btnSaveTab1"" value=""Save"" type=""button"">", Second button "html id:=btnSave "outerhtml:=<input id=""btnSave"" class=""Button"" onclick=""document.getElementById('a2').click();"" value=""Save"" type=""button"">", Third button "html id:=", outerhtml:=<input id=""btnSaveTab1"" class=""Button"" onclick=""document.getElementById('a1').click();"" name=""btnSaveTab Fourth button "html id:=btnSave outerhtml:=<input id=""btnSave"" class=""Button"" onclick=""document.getElementById('a2').click();"" value=""Save"" type=""button"" 5th button "html id:=", "outerhtml:=<input class=""Button"" onclick=""document.getElementById('a5').click();"" value=""Save"" type=""button"">",
How can i parameterize the standard checkpoint using Excel sheet where my expected values are there?? suppose i want to test a application with diffent value and want to run 5 iteration?? for each iteration, values will be exported from excel sheet as input. Now i will store some expected values in the excel sheet, which i want to check in the application whether expected equals to actual value??? can any one help me
what's the difference in between function and sub and give some code as well