public enum WebDriverLifecycleEvent extends Enum<WebDriverLifecycleEvent>
Enum Constant and Description |
---|
CLOSE |
QUIT |
TEST_FINISHED |
Modifier and Type | Method and Description |
---|---|
static WebDriverLifecycleEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebDriverLifecycleEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebDriverLifecycleEvent CLOSE
public static final WebDriverLifecycleEvent QUIT
public static final WebDriverLifecycleEvent TEST_FINISHED
public static WebDriverLifecycleEvent[] values()
for (WebDriverLifecycleEvent c : WebDriverLifecycleEvent.values()) System.out.println(c);
public static WebDriverLifecycleEvent valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.