All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.appium.java_client.pagefactory.WindowsFindByAllSet Maven / Gradle / Ivy

There is a newer version: 9.2.2
Show newest version
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 WindowsFindAll}
 */
@Target(value = {TYPE, FIELD})
@Retention(value = RUNTIME)
public @interface WindowsFindByAllSet {
    /**
     * @return an array of {@link WindowsFindAll} which builds a sequence of
     * the chained searching for elements or a set of possible locators
     */
    WindowsFindAll[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy