Today only i joined in this site. Can u please tell me
definition of parameterization. and how i can do the
parameterization?
Answer Posted / pradeep
a generic answer (not related to just WR/QTP):
parameterization is a process to get the correct output
results for different input values that are passed into a
single variable.
method:
-define a variable in the script
-create or re-direct the user to generate a data table that
holds the respective values
-run the script
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you convert manual test cases to automated test cases?
What do you mean by iteration?
Is it possible to change the values of analog recording?
How do you create regression test packs?
why text area checkpoints cannot used for web applications
Hi Friends, Im planning to do certifcation in mercury Automation Tool QTP.But I Didnt get any clear details regarding course syllabus, fees, where to approach, and which certification would be useful for the experienced testers? can any one send me the details?
Dear All, How to generate Pass or Fail Report in QTP without using Reporter.Report Event Method ? Thanks Balaji
Suggest and Define a solution for an application whose objects are not recognized by UFT?
In qtp, how you can use xpath to identify objects?
images are dynamically changes how to compare two images with out using the bitmap
What is action? How many types of actions are there in qtp?
when will you do debug your script? and explain that process?
How do you open adobe acrobat file in QTP and do some testing on that file ?
hi can any body give me a script for creating a modularity or keyword driven framework..i am working as a qtp tester for 2 months but still i am not exposed to framework in my company
I have two For loop, first For loop does is creates a customer and input the customer info and then the second for loop within the first for loop does the follows which is capture the customer name and verify the with the data within the datatable. The problem I am coming across is that when it goes through the second time creating another customer and then verify the second customer then it creates the following during runtime. I want is to have the customer2 below Customer1 under the Customer_from_Apps. Any help will be greatly appreciate it. Customer Customer_from_Apps Customer_from_Apps1 Customer1 Customer 1 Customer2 Customer2 Window("Customer Desktop").Window("Customer Tracking (Privacy").WinObject("TreeView20WndClass").Click 92,244 runtimevalue = .VbTreeView("vbname:=AppServerTree").GetROProperty("Selectio n") Customer_Val= Datatable.GlobalSheet.AddParameter ("Customer_from_Apps",runtimevalue) row=datatable.getsheet("Global").GetRowCount For x=1 to row datatable.SetCurrentRow(x) Data_Val=Datatable.Value("Customer",dtGlobalSheet) If (trim(Customer_Val)=trim(Data_Val)) Then Reporter.ReportEvent micPass, "Customer validation successful", "Actual Value: " &Data_Val&vbcrlf& "Customer Value: " &Customer_Val else Reporter.ReportEvent micFail, "Cusotmer validation unsuccessful", "Actual Value: " &Data_Val&vbcrlf& "Customer Value: " &Customer_Val End If Next