io.appium.java_client.pagefactory.WindowsFindByChainSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client for Appium Mobile Webdriver
package io.appium.java_client.pagefactory;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Defines set of chained/possible locators. Each one locator
* should be defined with {@link WindowsFindBys}
*/
@Target(value = {TYPE, FIELD})
@Retention(value = RUNTIME)
public @interface WindowsFindByChainSet {
/**
* An array of which builds a sequence of the chained searching for elements or a set of possible locators.
*
* @return an array of {@link WindowsFindBys} which builds a sequence of
* the chained searching for elements or a set of possible locators
*/
WindowsFindBys[] value();
}