What is a Dictionary object in QTP.?
Answer / manjunathareddy
Dictionary object is similar to a typical array,
it uses unique key associated with every item,it helps you
call the item whenever required.
Example:-
Dim Dict
Set Dict=CreateObject("Scripting.Dictionary")
Dict.Add "A","Apple"
Dict.Add "B","Banana"
i=Dict.Items
j=Dict.Keys
For k= 0 to Dict.Count - 1
Msgbox j(k)&": "&i(k)
Next
| Is This Answer Correct ? | 6 Yes | 1 No |
How to check the URL using Automation tool QTP
Difference between image checkpoint and bitmap checkpoint
how to choose the framework in qtp ? 2)when we go for the descriptive programming ?
write script to read and write data from file ?
Among the 3 Recoring modes,Standard, Analog and Low Level. which one is mostly used. I know that Analog id used for Graphs, Digital Signatures and Barcoding. so, which one among the 2?
what are the areas that cannot be tested using an automated tool? list a few
How to check which add-ins are associated with a test in qtp?
Describe function procedure in vbscript.
Plz write the code, function will take the parameter as month number, i.e., numerical value, but it returns the last day of the month in string (weekday). example: input: function parameter: 3(march) output: thursday
Which functionalities of QTP used in banking project?
what is the difference between quality and testing ?
What is the difference between Image Checkpoint and Bitmap Checkpoint?