File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
src/main/java/io/appium/java_client/remote Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,11 @@ public interface AndroidMobileCapabilityType extends CapabilityType {
78
78
*/
79
79
String ANDROID_DEVICE_SOCKET = "androidDeviceSocket" ;
80
80
81
+ /**
82
+ * Timeout in milliseconds used to wait for an apk to install to the device. Defaults to `90000`.
83
+ */
84
+ String ANDROID_INSTALL_TIMEOUT = "androidInstallTimeout" ;
85
+
81
86
/**
82
87
* Name of avd to launch.
83
88
*/
@@ -156,7 +161,7 @@ public interface AndroidMobileCapabilityType extends CapabilityType {
156
161
157
162
/**
158
163
* Additional intent arguments that will be used to start activity. See Intent arguments:
159
- * http://developer.android.com/tools/help/adb .html#IntentSpec
164
+ * http://developer.android.com/reference/android/content/Intent .html
160
165
*/
161
166
String OPTIONAL_INTENT_ARGUMENTS = "optionalIntentArguments" ;
162
167
@@ -216,5 +221,17 @@ public interface AndroidMobileCapabilityType extends CapabilityType {
216
221
*/
217
222
String RECREATE_CHROME_DRIVER_SESSIONS = "recreateChromeDriverSessions" ;
218
223
224
+ /**
225
+ * In a web context, use native (adb) method for taking a screenshot, rather than proxying
226
+ * to ChromeDriver, default false.
227
+ */
228
+ String NATIVE_WEB_SCREENSHOT = "nativeWebScreenshot" ;
229
+
230
+ /**
231
+ * The name of the directory on the device in which the screenshot will be put.
232
+ * Defaults to /data/local/tmp.
233
+ */
234
+ String ANDROID_SCREENSHOT_PATH = "androidScreenshotPath" ;
235
+
219
236
String SELENDROID_PORT = "selendroidPort" ;
220
237
}
You can’t perform that action at this time.
0 commit comments