public enum IOSServerFlag extends java.lang.Enum<IOSServerFlag> implements ServerArgument
Enum Constant and Description |
---|
BACK_END_RETRIES
How many times to retry launching Instruments before saying it
crashed or timed out.
|
CUSTOM_INSTRUMENTS_PATH
custom path to the instruments commandline tool.
|
DEFAULT_DEVICE
use the default simulator that instruments launches
on its own.
|
FORCE_IPAD_SIMULATOR
Use the iPad Simulator no matter what the app wants.
|
FORCE_IPHONE_SIMULATOR
Use the iPhone Simulator no matter what the app wants.
|
IPA_ABSOLUTE_PATH
absolute path to compiled .ipa file.
|
ISOLATE_SIM_DEVICE
Xcode 6 has a bug on some platforms where a certain simulator can only be
launched without error if all other simulator devices are first deleted.
|
SAFARI
Use the safari app.
|
TRACE_DIRECTORY_ABSOLUTE_PATH
Absolute path to directory Appium use to save ios instruments traces,
defaults to /appium-instruments.
|
TRACE_TEMPLATE_FILE_PATH
.tracetemplate file to use with Instruments.
|
WEBKIT_DEBUG_PROXY_PORT
Local port used for communication with ios-webkit-debug-proxy.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getArgument() |
static IOSServerFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IOSServerFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOSServerFlag IPA_ABSOLUTE_PATH
public static final IOSServerFlag BACK_END_RETRIES
public static final IOSServerFlag SAFARI
public static final IOSServerFlag DEFAULT_DEVICE
public static final IOSServerFlag FORCE_IPHONE_SIMULATOR
public static final IOSServerFlag FORCE_IPAD_SIMULATOR
public static final IOSServerFlag TRACE_TEMPLATE_FILE_PATH
public static final IOSServerFlag CUSTOM_INSTRUMENTS_PATH
public static final IOSServerFlag ISOLATE_SIM_DEVICE
public static final IOSServerFlag TRACE_DIRECTORY_ABSOLUTE_PATH
public static final IOSServerFlag WEBKIT_DEBUG_PROXY_PORT
public static IOSServerFlag[] values()
for (IOSServerFlag c : IOSServerFlag.values()) System.out.println(c);
public static IOSServerFlag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getArgument()
getArgument
in interface ServerArgument