Annotation Type AndroidFindBy
-
@Retention(RUNTIME) @Target({FIELD,TYPE}) @Repeatable(AndroidFindBySet.class) public @interface AndroidFindByUsed to mark a field on a Page Object to indicate an alternative mechanism for locating the element or a list of elements. Used in conjunction withPageFactorythis allows users to quickly and easily create PageObjects. using Android UI selectors, accessibility, id, name, class name, tag and xpath
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringaccessibilityIt an UI automation accessibility Id which is a convenient to Android.java.lang.StringandroidDataMatcherIt is a desired data matcher expression.java.lang.StringandroidViewMatcherIt is a desired view matcher expression.java.lang.StringclassNameIt is a className of the target element.java.lang.StringidIt is an id of the target element.intpriorityPriority of the searching.java.lang.StringtagNameIt is a desired element tag.java.lang.StringuiAutomatorA String that can build an Android UiSelector or UiScrollable object.java.lang.StringxpathIt is a xpath to the target element.
-