String value = input.getAttribute("value");
if(value == null) return Boolean.FALSE;
return value.trim().equals(code);
}
});
element_to_select.click();
}
public void should_have_all_these(String... expected_options) {
Strings option_strings = get_all_options();
Strings strings_not_present = option_strings.has_all_these(expected_options);