Add sendKeyStrategy to cap handler

This commit is contained in:
Isaac Murchie
2014-12-10 10:18:05 -08:00
parent e9bd71460f
commit 5ef1048d45
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -78,6 +78,6 @@
|`processArguments`| Arguments to pass to the AUT using instruments|e.g., `-myflag`|
|`interKeyDelay`| The delay, in ms, between keystrokes sent to an element when typing.|e.g., `100`|
|`showIOSLog`| Whether to show any logs captured from a device in the appium logs. Default `false`|`true` or `false`|
|`sendKeyStrategy`| strategy to use to type test into a test field. Simulator default: `oneByOne`. Real device default: 'grouped' |`oneByOne`, `grouped` or setValue|
|`sendKeyStrategy`| strategy to use to type test into a test field. Simulator default: `oneByOne`. Real device default: `grouped` |`oneByOne`, `grouped` or `setValue`|
|`screenshotWaitTimeout`| Max timeout in sec to wait for a screenshot to be generated. default: 10 |e.g., `5`|
|`waitForAppScript`| The ios automation script used to determined if the app has been launched, by default the system wait for the page source not to be empty. The result must be a boolean |e.g. `true;`, `target.elements().length > 0;`, '$.delay(5000); true;` |
|`waitForAppScript`| The ios automation script used to determined if the app has been launched, by default the system wait for the page source not to be empty. The result must be a boolean |e.g. `true;`, `target.elements().length > 0;`, `$.delay(5000); true;` |
+1
View File
@@ -86,6 +86,7 @@ var iosCaps = [
, 'interKeyDelay'
, 'showIOSLog'
, 'loggingPrefs'
, 'sendKeyStrategy'
];
var Capabilities = function (capabilities) {