public static enum WebDriverManager.WebBrowserType extends Enum<WebDriverManager.WebBrowserType>
| Enum Constant and Description |
|---|
CHROME |
EDGE |
FIREFOX |
INTERNET_EXPLORER |
MARIONETTE |
NONE |
OPERA |
PHANTOMJS |
REMOTE_CHROME |
REMOTE_FIREFOX |
REMOTE_INTERNET_EXPLORER |
| Modifier and Type | Method and Description |
|---|---|
static WebDriverManager.WebBrowserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebDriverManager.WebBrowserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebDriverManager.WebBrowserType CHROME
public static final WebDriverManager.WebBrowserType FIREFOX
public static final WebDriverManager.WebBrowserType INTERNET_EXPLORER
public static final WebDriverManager.WebBrowserType REMOTE_CHROME
public static final WebDriverManager.WebBrowserType REMOTE_FIREFOX
public static final WebDriverManager.WebBrowserType PHANTOMJS
public static final WebDriverManager.WebBrowserType MARIONETTE
public static final WebDriverManager.WebBrowserType EDGE
public static final WebDriverManager.WebBrowserType OPERA
public static final WebDriverManager.WebBrowserType NONE
public static final WebDriverManager.WebBrowserType REMOTE_INTERNET_EXPLORER
public static WebDriverManager.WebBrowserType[] values()
for (WebDriverManager.WebBrowserType c : WebDriverManager.WebBrowserType.values()) System.out.println(c);
public static WebDriverManager.WebBrowserType 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.