ComboBoxElement comboBox = getComboBox("filtering-off");
assertThat(getComboBoxValue(comboBox), is(""));
//selectByText doesn't work when filtering is off.
comboBox.openPopup();
List<WebElement> filteredItems = findElements(By.className("gwt-MenuItem"));
filteredItems.get(1).click();
sendKeysToComboBox(comboBox, "mnop");