Package daveayan.gherkinsalad.components.core

Examples of daveayan.gherkinsalad.components.core.Element


      option_to_select.click();
    }
  }

  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;
        }
View Full Code Here


    return option_strings;
  }

  public String get_selected_option() {
    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") || selected.equals("true");
        }
        return false;
      }
    });
    return selected_option.getText();
  }
View Full Code Here

TOP

Related Classes of daveayan.gherkinsalad.components.core.Element

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.