08-11-2015, 08:31 PM
Hi Neetha,
Here is code for your Question
Here is code for your Question
Code:
allitems = split(browser().page().WebList().getRoProperty("all items"), ";")
for each x in allitems
if instr(x, "100") > 0 Then
browser().page().WebList().select x
strFound = True
Exit For
next
if strFound = True Then
msgbox "I tem is listed in the list box and selected"
Else
msgbox "Item is not listed in the list box"
end if