if (eventQueueRunner.invokeBoolean(getComboBox(), "isEditable")) {
getEditor().setText(text, false);
} else {
text = stripHTMLTags(text);
int selectedItem = findMatchWithRetries(text);
new FireableMouseClickEvent(getComboBox()).fire(1);
swingWait();
if (selectedItem == -1) {
throw new RuntimeException("Could not find item " + text + " in Combobox " + getMComponentName());
}
setListText(selectedItem, accessPopupList(true));