| Enum Constant and Description |
|---|
CLASS |
CSS_SELECTOR |
ID |
NAME |
TAG |
XPATH |
| Modifier and Type | Method and Description |
|---|---|
static By.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
返回具有指定名称的此类型的枚举常量。 |
static By.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
以声明顺序返回包含此枚举类型的常量的数组。 |
public static final By.Type ID
public static final By.Type CLASS
public static final By.Type TAG
public static final By.Type XPATH
public static final By.Type NAME
public static final By.Type CSS_SELECTOR
public static By.Type[] values()
for (By.Type c : By.Type.values()) System.out.println(c);
public static By.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
-要返回的枚举常量的名称。
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null