public enum ClickMethod extends java.lang.Enum<ClickMethod>
| Enum Constant and Description |
|---|
DEFAULT
Click the element via WebDriver default click
|
JS
Click the element via JavaScript
|
| Modifier and Type | Method and Description |
|---|---|
static ClickMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClickMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClickMethod JS
public static final ClickMethod DEFAULT
public static ClickMethod[] values()
for (ClickMethod c : ClickMethod.values()) System.out.println(c);
public static ClickMethod 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 namejava.lang.NullPointerException - if the argument is null