Package core.uiCore.driverProperties
Enum browserType.BrowserType
- java.lang.Object
-
- java.lang.Enum<browserType.BrowserType>
-
- core.uiCore.driverProperties.browserType.BrowserType
-
- All Implemented Interfaces:
Serializable,Comparable<browserType.BrowserType>
- Enclosing class:
- browserType
public static enum browserType.BrowserType extends Enum<browserType.BrowserType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHROMECHROME_HEADLESSFIREFOXFIREFOX_HEADLESSINTERNET_EXPLORERMICROSOFT_EDGEOPERASAFARI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static browserType.BrowserTypevalueOf(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.
-
-
-
Enum Constant Detail
-
CHROME
public static final browserType.BrowserType CHROME
-
FIREFOX
public static final browserType.BrowserType FIREFOX
-
INTERNET_EXPLORER
public static final browserType.BrowserType INTERNET_EXPLORER
-
MICROSOFT_EDGE
public static final browserType.BrowserType MICROSOFT_EDGE
-
OPERA
public static final browserType.BrowserType OPERA
-
CHROME_HEADLESS
public static final browserType.BrowserType CHROME_HEADLESS
-
FIREFOX_HEADLESS
public static final browserType.BrowserType FIREFOX_HEADLESS
-
SAFARI
public static final browserType.BrowserType SAFARI
-
-
Method Detail
-
values
public static browserType.BrowserType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (browserType.BrowserType c : browserType.BrowserType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static browserType.BrowserType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-