public enum Drivers extends Enum<Drivers> implements Supplier<org.openqa.selenium.WebDriver>
| Enum Constant and Description |
|---|
Chrome |
Firefox |
Headless |
IExplorer |
Safari |
| Modifier and Type | Method and Description |
|---|---|
static Drivers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Drivers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Drivers Firefox
public static final Drivers IExplorer
public static final Drivers Chrome
public static final Drivers Safari
public static final Drivers Headless
public static Drivers[] values()
for (Drivers c : Drivers.values()) System.out.println(c);
public static Drivers 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 DevCon5 GmbH. All rights reserved.