ui-automation
ui-automation copied to clipboard
Cannot get list of items from ComboBox
AutomationList list1 = (AutomationList) combo.getList();
Error: The method getList() from the type AutomationComboBox is deprecated
If you use the getItems
method, it should have the same results, and isn't deprecated.
AutomationList list1 = (AutomationList) combo.getItems();