Enum Class How

java.lang.Object
java.lang.Enum<How>
org.openqa.selenium.support.How
All Implemented Interfaces:
Serializable, Comparable<How>, Constable

public enum How extends Enum<How>
  • Enum Constant Details

    • CLASS_NAME

      public static final How CLASS_NAME
    • CSS

      public static final How CSS
    • ID

      public static final How ID
    • ID_OR_NAME

      public static final How ID_OR_NAME
    • NAME

      public static final How NAME
    • TAG_NAME

      public static final How TAG_NAME
    • XPATH

      public static final How XPATH
    • UNSET

      public static final How UNSET
  • Method Details

    • values

      public static How[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static How valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • buildBy

      public abstract By buildBy(String value)