public enum WebDrivers extends Enum<WebDrivers>
WebDriverFactory.
Supported drivers are "firefox", "chrome", "ie", "htmlunit", or any class name implementing WebDriver.
| Enum Constant and Description |
|---|
INSTANCE
Singleton
|
| Modifier and Type | Method and Description |
|---|---|
static WebDrivers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebDrivers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebDrivers INSTANCE
public static WebDrivers[] values()
for (WebDrivers c : WebDrivers.values()) System.out.println(c);
public static WebDrivers 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 © 2016 FluentLenium. All Rights Reserved.