public static enum Driver.BrowserName extends Enum<Driver.BrowserName>
| Enum Constant and Description |
|---|
APPIUM |
EDGE |
FIREFOX |
FIREFOXLEGACY |
FIREFOXMARIONETTE |
FIREFOXPORTABLE |
GOOGLECHROME |
GRID |
HTMLUNIT |
IE |
SAUCELABS |
| Modifier and Type | Method and Description |
|---|---|
static Driver.BrowserName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Driver.BrowserName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Driver.BrowserName FIREFOX
public static final Driver.BrowserName FIREFOXLEGACY
public static final Driver.BrowserName GOOGLECHROME
public static final Driver.BrowserName SAUCELABS
public static final Driver.BrowserName IE
public static final Driver.BrowserName HTMLUNIT
public static final Driver.BrowserName GRID
public static final Driver.BrowserName FIREFOXPORTABLE
public static final Driver.BrowserName FIREFOXMARIONETTE
public static final Driver.BrowserName APPIUM
public static final Driver.BrowserName EDGE
public static Driver.BrowserName[] values()
for (Driver.BrowserName c : Driver.BrowserName.values()) System.out.println(c);
public static Driver.BrowserName 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. All rights reserved.