How can i select multiple items from a WebList bOX USING QTP
Dim a,i 'Getting list box count a=Browser().Page().Weblist(WebListName).GetItemsCount 'getting list box values For i=0 to a-1 msgbox Browser().Page().Weblist(WebListName).GetItem (i),4,"States" Next