We have a ComboBox that performs custom filtering ``` setItems( { item, filterText -> ... custom filtering logic removed ... }, myRepository.findAll().toList() ) ``` Calling ComboBoxTester.selectItem doesn't respect this filtering and does filtering of its own ``` final List<Y> filtered = suggestionItems.stream().filter( item -> selection.equals(itemLabelGenerator.apply(item))) .collect(Collectors.toList()); ``` When calling the selectItem API it should respect the custom filtering behavior of the ComboBox.