-
-
Notifications
You must be signed in to change notification settings - Fork 765
chore: Add more UiAutomator2 options #1545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Add more UiAutomator2 options #1545
Conversation
src/main/java/io/appium/java_client/android/options/signing/KeystoreConfig.java
Show resolved
Hide resolved
| public interface SupportsIsHeadlessOption<T extends BaseOptions<T>> extends | ||
| Capabilities, CanSetCapability<T> { | ||
| String IS_HEADLESS_OPTION = "isHeadless"; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does it make sense to add a method:
default T headless() {
return setIsHeadless(true);
}?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
| public interface SupportsGpsEnabledOption<T extends BaseOptions<T>> extends | ||
| Capabilities, CanSetCapability<T> { | ||
| String GPS_ENABLED_OPTION = "gpsEnabled"; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does it make sense to add a method:
default T gpsEnabled() {
return setGpsEnabled(true);
}?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
Change list
Continuing to add UiAutomator2 options.
Types of changes