public enum BrowserType extends Enum<BrowserType>
| Enum Constant and Description |
|---|
Chrome |
Edge |
Firefox |
FirefoxV64p0p2 |
FirefoxV65p0p2 |
FirefoxV67p0p4 |
FirefoxV68p0p2 |
HtmlUnitDriver |
Iexplorer |
PhantomJs |
| Modifier and Type | Method and Description |
|---|---|
static BrowserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BrowserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrowserType Firefox
public static final BrowserType FirefoxV68p0p2
public static final BrowserType FirefoxV67p0p4
public static final BrowserType FirefoxV65p0p2
public static final BrowserType FirefoxV64p0p2
public static final BrowserType Chrome
public static final BrowserType Edge
public static final BrowserType Iexplorer
public static final BrowserType PhantomJs
public static final BrowserType HtmlUnitDriver
public static BrowserType[] values()
for (BrowserType c : BrowserType.values()) System.out.println(c);
public static 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 © 2021. All rights reserved.