Annotation Type WindowsFindBy
-
@Retention(RUNTIME) @Target({FIELD,TYPE}) @Repeatable(WindowsFindBySet.class) public @interface WindowsFindByUsed 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 Windows automation 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 Windows.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.StringwindowsAutomationIt is a Windows automator string.java.lang.StringxpathIt is a xpath to the target element.
-