Skip to content

XCUIT Caps Updates #553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -195,14 +195,6 @@ public interface IOSMobileCapabilityType extends CapabilityType {
*/
String SHOW_XCODE_LOG = "showXcodeLog";

/**
* Device logger for real devices. It could be path to deviceconsole
* (installed with npm install deviceconsole, a compiled binary named
* deviceconsole will be added to ./node_modules/deviceconsole/)
* or idevicesyslog (comes with libimobiledevice). Defaults to idevicesyslog
*/
String REAL_DEVICE_LOGGER = "realDeviceLogger";

/**
* Time in milliseconds to pause between installing the application
* and starting WebDriverAgent on the device. Used particularly for larger applications.
Expand Down Expand Up @@ -255,4 +247,20 @@ public interface IOSMobileCapabilityType extends CapabilityType {
*/
String KEYCHAIN_PATH = "keychainPath";

}
/**
* Forces uninstall of any existing WebDriverAgent app on device.
* This can provide stability in some situations. Defaults to false.
*/
String USE_NEW_WDA = "useNewWDA";

/**
* Time, in ms, to wait for WebDriverAgewnt to be pingable. Defaults to 60000ms.
*/
String WDA_LAUNCH_TIMEOUT = "wdaLaunchTimeout";

/**
* Timeout, in ms, for waiting for a resonse from WebDriverAgent. Defaults to 240000ms.
*/
String WDA_CONNECTION_TIMEOUT = "wdaConnectionTimeout";

}