How to select multiple choices from Multi-Select weblist - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming) +--- Thread: How to select multiple choices from Multi-Select weblist (/Thread-How-to-select-multiple-choices-from-Multi-Select-weblist) |
How to select multiple choices from Multi-Select weblist - blavanya - 05-26-2008 In my application , i have a weblist from which a user can select multiple values by doing control - select. Can anyone pls suggest me a solution, how to automate this? RE: How to select multiple choices from Multi-Select weblist - Anshoo Arora - 06-05-2008 B Code: rowser("").Page("").WebList("").ExtendSelect "Option1" RE: How to select multiple choices from Multi-Select weblist - blavanya - 06-10-2008 hey thanks alot .. it worked for me RE: How to select multiple choices from Multi-Select weblist - shivu.hanu - 01-03-2012 Code: BROWSER("").PAGE("").WEBLIST("").SELECT "ITEM NAME" OR "#INDEX NUMBER" |