You could simply do something like this:
Code:
vendorListItems = Browser("...").Page("...").WebList("...").GetROProperty("all items")
If Not instr(vendorListItems, VendorNameToSearch) > 0 Then
Msgbox "Vendor Name not found"
End If
