From 154cb49102ae8e5305b9eed265acd7ac80ef2034 Mon Sep 17 00:00:00 2001 From: spearminty Date: Fri, 1 Jul 2016 11:04:28 -0500 Subject: [PATCH] Add androidInstallTimeout cap, update Android dep Add androidInstallTimeout capability to docs Android driver dependency updates from 1.10.6 > 1.10.12: * Fix 'release' touch action * Unlock helper deflake * Add device udid to android session information * Improve text clear command * Allow fast reset without 'app' capability * Add 'androidInstallTimeout' capability --- docs/en/writing-running-appium/caps.md | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en/writing-running-appium/caps.md b/docs/en/writing-running-appium/caps.md index b32248728..ebdc6d85b 100644 --- a/docs/en/writing-running-appium/caps.md +++ b/docs/en/writing-running-appium/caps.md @@ -33,6 +33,7 @@ |`androidCoverage`| Fully qualified instrumentation class. Passed to -w in adb shell am instrument -e coverage true -w | `com.my.Pkg/com.my.Pkg.instrumentation.MyInstrumentation`| |`enablePerformanceLogging`| (Chrome and webview only) Enable Chromedriver's performance logging (default `false`)| `true`, `false`| |`androidDeviceReadyTimeout`|Timeout in seconds used to wait for a device to become ready after booting|e.g., `30`| +|`androidInstallTimeout`|Timeout in milliseconds used to wait for an apk to install to the device. Defaults to `90000` |e.g., `90000`| |`adbPort`|Port used to connect to the ADB server (default `5037`)|`5037`| |`androidDeviceSocket`|Devtools socket name. Needed only when tested app is a Chromium embedding browser. The socket is open by the browser and Chromedriver connects to it as a devtools client.|e.g., `chrome_devtools_remote`| |`avd`| Name of avd to launch|e.g., `api19`| diff --git a/package.json b/package.json index 36ea08271..a783076b1 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "doc": "./docs" }, "dependencies": { - "appium-android-driver": "^1.10.6", + "appium-android-driver": "^1.10.12", "appium-base-driver": "^2.0.3", "appium-fake-driver": "^0.1.10", "appium-ios-driver": "^1.12.2",