Login
Remember
Register
Ask a Question
How to find array size in QTP?
0
votes
asked
Apr 25, 2020
in
QuickTest Professional (QTP)
by
Robindeniel
How to find array size in QTP?
#qtp-array-size
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Apr 25, 2020
by
SakshiSharma
Size of an array in QTP will be found by using the following code Print (ubound(arr)+1)
Ubound returns the last index in array- so size of array will be +1
...