Ans: By using "all items" property we can get all the list items from a WebList then split with semi colon (;)
Ex: allListItems=Browser("Sign in - Google Accounts").Page("Sign in - Google Accounts").WebList("lang-chooser").GetROProperty("all items")
msgbox allListItems
arrList=Split(allListItems,";")
For i = 0 to UBound(arrList)
listItem=listItem & arrList(i) & Vbcrlf
Next
msgbox listItem
Follow @TestingQ
Ex: allListItems=Browser("Sign in - Google Accounts").Page("Sign in - Google Accounts").WebList("lang-chooser").GetROProperty("all items")
msgbox allListItems
arrList=Split(allListItems,";")
For i = 0 to UBound(arrList)
listItem=listItem & arrList(i) & Vbcrlf
Next
msgbox listItem