@SuppressWarnings("unchecked")
public List<String> get_all_options() {
List<String> option_strings = ListUtils.EMPTY_LIST;
if (isEnabled()) {
Elements options = root_element().findElements(By.tagName("option"));
option_strings = options.asString();
}
return option_strings;
}
public String get_selected_option() {