Package daveayan.gherkinsalad.components

Examples of daveayan.gherkinsalad.components.Elements.asString()


  @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() {
View Full Code Here


    List<String> options = ListUtils.EMPTY_LIST;
    if(isEnabled()) {
      click_if_enabled();
      Element ul = find_ul_element();
      Elements li_a_s = ul.findElements(By.tagName("a"));
      options = li_a_s.asString();
      click_if_enabled();
    }
    return options;
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.