File tree 1 file changed +17
-9
lines changed
src/main/java/io/appium/java_client/remote
1 file changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -195,14 +195,6 @@ public interface IOSMobileCapabilityType extends CapabilityType {
195
195
*/
196
196
String SHOW_XCODE_LOG = "showXcodeLog" ;
197
197
198
- /**
199
- * Device logger for real devices. It could be path to deviceconsole
200
- * (installed with npm install deviceconsole, a compiled binary named
201
- * deviceconsole will be added to ./node_modules/deviceconsole/)
202
- * or idevicesyslog (comes with libimobiledevice). Defaults to idevicesyslog
203
- */
204
- String REAL_DEVICE_LOGGER = "realDeviceLogger" ;
205
-
206
198
/**
207
199
* Time in milliseconds to pause between installing the application
208
200
* and starting WebDriverAgent on the device. Used particularly for larger applications.
@@ -255,4 +247,20 @@ public interface IOSMobileCapabilityType extends CapabilityType {
255
247
*/
256
248
String KEYCHAIN_PATH = "keychainPath" ;
257
249
258
- }
250
+ /**
251
+ * Forces uninstall of any existing WebDriverAgent app on device.
252
+ * This can provide stability in some situations. Defaults to false.
253
+ */
254
+ String USE_NEW_WDA = "useNewWDA" ;
255
+
256
+ /**
257
+ * Time, in ms, to wait for WebDriverAgewnt to be pingable. Defaults to 60000ms.
258
+ */
259
+ String WDA_LAUNCH_TIMEOUT = "wdaLaunchTimeout" ;
260
+
261
+ /**
262
+ * Timeout, in ms, for waiting for a resonse from WebDriverAgent. Defaults to 240000ms.
263
+ */
264
+ String WDA_CONNECTION_TIMEOUT = "wdaConnectionTimeout" ;
265
+
266
+ }
You can’t perform that action at this time.
0 commit comments