io.appium.java_client.pagefactory.iOSXCUITFindByChainSet 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 io.appium.java_client.pagefactory.iOSXCUITFindBys}
*/
@Target(value = {TYPE, FIELD})
@Retention(value = RUNTIME)
public @interface iOSXCUITFindByChainSet {
/**
* @return an array of {@link io.appium.java_client.pagefactory.iOSXCUITFindBys} which builds a sequence of
* the chained searching for elements or a set of possible locators
*/
iOSXCUITFindBys[] value();
}