Skip to content

Commit 50e2318

Browse files
authored
feat: add constants for mobile capability settings (#1323)
1 parent 5a899f9 commit 50e2318

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/main/java/io/appium/java_client/remote/MobileCapabilityType.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,16 @@ public interface MobileCapabilityType extends CapabilityType {
134134
* or Safari's (on iOS) performance logging (default {@code false}).
135135
*/
136136
String ENABLE_PERFORMANCE_LOGGING = "enablePerformanceLogging";
137+
138+
139+
/**
140+
* App or list of apps (as a JSON array) to install prior to running tests. Note that it will not work with
141+
* automationName of Espresso and iOS real devices.
142+
*/
143+
String OTHER_APPS = "otherApps";
144+
145+
/**
146+
* When a find operation fails, print the current page source. Defaults to false.
147+
*/
148+
String PRINT_PAGE_SOURCE_ON_FIND_FAILURE = "printPageSourceOnFindFailure";
137149
}

0 commit comments

Comments
 (0)