is it possible to change the selected item in a winforms application using c# UI automation (same logic as UIspy.exe)? I would like to change the selected item to a specific item (I know it's index/position in the list).
|
feedback
|
| |||
|
feedback
|
|
How can we set the value in a Combo box where the list is generated dynamically. Like in my case
comboboxItem.Count is 0 While in the same combobox when i expand it using mouse click it shows all the values. | ||||
feedback
|
|
Further to sizu's answer - You need to expand the ComboBox BEFORE retrieving the Items. The items only "exist" as far as UIAutomation is concerned when the ComboBox has been expanded. | |||
|
feedback
|