public static enum browserType.BrowserType extends Enum<browserType.BrowserType>
| Enum Constant and Description |
|---|
CHROME |
CHROME_HEADLESS |
FIREFOX |
FIREFOX_HEADLESS |
INTERNET_EXPLORER |
MICROSOFT_EDGE |
OPERA |
SAFARI |
| Modifier and Type | Method and Description |
|---|---|
static browserType.BrowserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static browserType.BrowserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final browserType.BrowserType CHROME
public static final browserType.BrowserType FIREFOX
public static final browserType.BrowserType INTERNET_EXPLORER
public static final browserType.BrowserType MICROSOFT_EDGE
public static final browserType.BrowserType OPERA
public static final browserType.BrowserType CHROME_HEADLESS
public static final browserType.BrowserType FIREFOX_HEADLESS
public static final browserType.BrowserType SAFARI
public static browserType.BrowserType[] values()
for (browserType.BrowserType c : browserType.BrowserType.values()) System.out.println(c);
public static browserType.BrowserType 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 © 2019. All rights reserved.