01-03-2012, 06:41 PM
Code:
Browser("name:= X").Page("tilte:= X").WebList("micclass:=weblist","html tag:=SELECT", "class:=list_container", "html id:=category ", "name:=category","select type:=ComboBox Select").Select "#1"
In the above statement,
- micclass need not be used. Because you already specified the class name i.e. weblist()
- html id:=category there is an extra space after category. Instead you can use .*
- select type:=ComboBox.*
Please try with the below statement:
Code:
Browser("name:= X").Page("tilte:= X").WebList("class:=list_container", "html id:=category.*", "name:=category","select type:=ComboBox.*").Select "#1"