}
public void select_code_if_enabled(String code) {
Element element = root_element();
if (this.isEnabled()) {
Elements options = element.findElements(By.tagName("option"));
for (Element o : options._nativeList()) {
if (StringUtils.equals(o.getAttribute("value"), code)) {
o.click();
break;
}