}
public String get_selected_option() {
if (isEnabled()) {
Elements options = root_element().findElements(By.tagName("option"));
Element selected_option = options.findFirstElementThatMatches(new Predicate<Element>() {
public boolean apply(Element input) {
String selected = input.getAttribute("selected");
if(StringUtils.isNotBlank(selected)) {
return selected.equals("selected");
}