Package org.openqa.selenium.support
Annotation Interface FindAll
Used to mark a field on a Page Object to indicate that lookup should use a series of @FindBy tags
It will then search for all elements that match any of the FindBy criteria. Note that elements
are not guaranteed to be in document order.
It can be used on a types as well, but will not be processed by default.
Eg:
@FindAll({@FindBy(how = How.ID, using = "foo"), @FindBy(className = "bar")})
-
Nested Class Summary
-
Required Element Summary
-
Element Details
-
value
FindBy[] value
-