Hi!
Is there any way to select the item on ElementListSelectionDialog?
I've tried this code:
final FilteredList list = bot.widget(widgetOfType(FilteredList.class));
UIThreadRunnable.syncExec(new VoidResult(){
public void run() {
list.setSelection(new int[] {0});
}
});
and this
final FilteredList list = bot.widget(widgetOfType(FilteredList.class));
list.setSelection(new int[] {0});
The filtered list from dialog seems to be found successfully but the setSelection method doesn't work.
Thanks,
Ćukasz