10-03-2017, 02:28 AM
I would use Instr method to find out if the list item present in the list or not.
Let me know if you have any questions.
Code:
DropDownItems=Browser("INTEGRATION").Page(INTEGRATION").WebList("frm:tabView:integratedLocalAcc_5").GetROProperty("all items")
DropDownItems = ";" & DropDownItems
'Now use instr to check if the searching list item is there in the list
ListItemToValidate = "Four"
If Instr(DropDownItems,";" & ListItemToValidate & ";")>0 Then
Msgbox "here goes your pass result"
Else
Msgbox "here goes your fail result"
End If
Thanks,
SUpputuri
SUpputuri