Skip to content

Commit

Permalink
add some new global settings for image element stuff (#1011)
Browse files Browse the repository at this point in the history
* add some new global settings for image element stuff

* remove extra empty line
  • Loading branch information
jlipps authored Aug 29, 2018
1 parent 421d03b commit de71366
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/java/io/appium/java_client/Setting.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ public enum Setting {
WAIT_SCROLL_ACKNOWLEDGMENT_TIMEOUT("setScrollAcknowledgmentTimeout"),
WAIT_ACTION_ACKNOWLEDGMENT_TIMEOUT("setActionAcknowledgmentTimeout"),
KEY_INJECTION_DELAY("setKeyInjectionDelay"),
NATIVE_WEB_TAP("nativeWebTap");
NATIVE_WEB_TAP("nativeWebTap"),
IMAGE_MATCH_THRESHOLD("imageMatchThreshold"),
FIX_IMAGE_FIND_SCREENSHOT_DIMENSIONS("fixImageFindScreenshotDims"),
FIX_IMAGE_TEMPLATE_SIZE("fixImageTemplateSize"),
CHECK_IMAGE_ELEMENT_STALENESS("checkForImageElementStaleness"),
UPDATE_IMAGE_ELEMENT_POSITION("autoUpdateImageElementPosition"),
IMAGE_ELEMENT_TAP_STRATEGY("imageElementTapStrategy");

private String name;

Expand Down

0 comments on commit de71366

Please sign in to comment.