what is the tsl statement for selecting the position of
item in list box in winrunner?
Answers were Sorted based on User's Feedback
Answer / sriharsha
list_select_item i think this is it...
if m wrong plz correct me
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / allin
Hi Sowmya,
List_get_item_num("","",number);
This function returns the numeric position in a list of an
item
arg1 is the list name
arg2 is the item string
arg3 is the returned item number.
Ratna Rao,
9833847339.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / r. sugumar, 9751004657
list_select_item ( list, item [,button [, offset ] ]);
list - logical name
item - selected item
button, offset optional.
------------------------
list_get_item("list",0,lvalue); used to count the list box
values.
list - list's logical name.
0 - which value u want to get
lvalue - variable, to store value of 0th position
--------------------------------------------------
list_get_items_count("list",outval);
list - logical name of the list box
outval - variable used to store the output value
------------------------------------------------
| Is This Answer Correct ? | 0 Yes | 0 No |
In Analog mode of Recording in WinRunner,the maximum value of Y in (x,y) is ?
write a compilemodule function for loginscreen.
How do you execute your tests from windows run command?
By Default if you save a File with just pause statement in the script how it is going to store in winrunner?
how u can do parameterization in winrunner? tell me the sample code.
How to write a content in to the file..which function did u use for that..?
When do you use break points?
How to check property of specific icon is highlighted or not?
list out the some of the exceptions list usually occur while recording and playing the script.
what are the differences you see in e-commerce and banking domain in testing point of view Thanks in Advance
When would you use 'set_window' and when would you use 'win_activate'?
Suppose there is a global variable called Counter.And there is a user defined function called my_function.which does not take in any parameters. How can a test engineer utilize Counter inside my_function body?