public enum GeneralServerFlag extends java.lang.Enum<GeneralServerFlag> implements ServerArgument
Enum Constant and Description |
---|
ALLOW_INSECURE
Allow a list of features which are considered insecure and must be turned on
explicitly by system administrators.
|
ASYNC_TRACE
Add long stack traces to log entries.
|
BASEPATH
Base path to use as the prefix for all webdriver routes running on this server.
|
CALLBACK_ADDRESS
callback IP Address (default: same as address).
|
CALLBACK_PORT
callback port (default: same as port).
|
CONFIGURATION_FILE
Configuration JSON file to register Appium with selenium grid.
|
DEBUG_LOG_SPACING
Add exaggerated spacing in logs to help with visual inspection.
|
DENY_INSECURE
Specify a list of features which will never be allowed to run, even if --relaxed-security
is turned on, and even if feature names are listed with --allow-insecure.
|
ENABLE_HEAP_DUMP
Enables NodeJS memory dumps collection feature.
|
LOCAL_TIMEZONE
Use local timezone for timestamps.
|
LOG_LEVEL
The message log level to be shown.
|
LOG_NO_COLORS
Don’t use colors in console output.
|
LOG_TIMESTAMP
Show timestamps in console output.
|
NO_PERMS_CHECKS
Bypass Appium’s checks to ensure we can read/write necessary files.
|
PRE_LAUNCH
Deprecated.
This argument has been removed from Appium 2.0
|
RELAXED_SECURITY
Disable additional security checks.
|
SESSION_OVERRIDE
Enables session override (clobbering).
|
SHELL
Enter REPL mode.
|
SHOW_CONFIG
Show info about the Appium server configuration and exit.
|
STRICT_CAPS
Cause sessions to fail if desired caps are sent in that Appium does not
recognize as valid for the selected device.
|
TEMP_DIRECTORY
Absolute path to directory Appium can use to manage temporary files, like
built-in iOS apps it needs to move around.
|
USE_DRIVERS
A comma-separated list of installed driver names that should be active for this server.
|
USE_PLUGINS
Plugins are little programs which can be added to an Appium installation and activated, for the purpose of
extending or modifying the behavior of pretty much any aspect of Appium.
|
WEB_HOOK
Also send log output to this HTTP listener.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getArgument() |
static GeneralServerFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeneralServerFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneralServerFlag SHELL
public static final GeneralServerFlag CALLBACK_ADDRESS
public static final GeneralServerFlag CALLBACK_PORT
public static final GeneralServerFlag SESSION_OVERRIDE
@Deprecated public static final GeneralServerFlag PRE_LAUNCH
public static final GeneralServerFlag LOG_LEVEL
public static final GeneralServerFlag LOG_TIMESTAMP
public static final GeneralServerFlag LOCAL_TIMEZONE
public static final GeneralServerFlag LOG_NO_COLORS
public static final GeneralServerFlag WEB_HOOK
public static final GeneralServerFlag CONFIGURATION_FILE
public static final GeneralServerFlag SHOW_CONFIG
public static final GeneralServerFlag NO_PERMS_CHECKS
public static final GeneralServerFlag STRICT_CAPS
public static final GeneralServerFlag TEMP_DIRECTORY
public static final GeneralServerFlag DEBUG_LOG_SPACING
public static final GeneralServerFlag ASYNC_TRACE
public static final GeneralServerFlag RELAXED_SECURITY
public static final GeneralServerFlag ENABLE_HEAP_DUMP
public static final GeneralServerFlag ALLOW_INSECURE
public static final GeneralServerFlag DENY_INSECURE
public static final GeneralServerFlag USE_PLUGINS
public static final GeneralServerFlag USE_DRIVERS
public static final GeneralServerFlag BASEPATH
public static GeneralServerFlag[] values()
for (GeneralServerFlag c : GeneralServerFlag.values()) System.out.println(c);
public static GeneralServerFlag 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