public static enum driverType.DriverType extends Enum<driverType.DriverType>
| Enum Constant and Description |
|---|
ANDROID_DRIVER |
API |
IOS_DRIVER |
LOCAL_WEBDRIVER |
REMOTE_WEBDRIVER |
WINAPP_DRIVER |
| Modifier and Type | Method and Description |
|---|---|
static driverType.DriverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static driverType.DriverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final driverType.DriverType LOCAL_WEBDRIVER
public static final driverType.DriverType REMOTE_WEBDRIVER
public static final driverType.DriverType IOS_DRIVER
public static final driverType.DriverType ANDROID_DRIVER
public static final driverType.DriverType API
public static final driverType.DriverType WINAPP_DRIVER
public static driverType.DriverType[] values()
for (driverType.DriverType c : driverType.DriverType.values()) System.out.println(c);
public static driverType.DriverType 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 © 2022. All rights reserved.