ui-automation icon indicating copy to clipboard operation
ui-automation copied to clipboard

Cannot get list of items from ComboBox

Open vali92 opened this issue 5 years ago • 1 comments

AutomationList list1 = (AutomationList) combo.getList();

Error: The method getList() from the type AutomationComboBox is deprecated

vali92 avatar Sep 12 '18 13:09 vali92

If you use the getItems method, it should have the same results, and isn't deprecated.

AutomationList list1 = (AutomationList) combo.getItems();

mmarquee avatar Sep 13 '18 07:09 mmarquee