Package com.codeborne.selenide.impl
Interface WebElementsCollection
-
- All Known Implementing Classes:
BySelectorCollection,FilteringCollection,HeadOfCollection,TailOfCollection,WebElementsCollectionWrapper
@ParametersAreNonnullByDefault public interface WebElementsCollection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringdescription()Driverdriver()org.openqa.selenium.WebElementgetElement(int index)get Nth element of this collectionjava.util.List<org.openqa.selenium.WebElement>getElements()get elements of this collection (probably cached).
-
-
-
Method Detail
-
getElements
@CheckReturnValue @Nonnull java.util.List<org.openqa.selenium.WebElement> getElements()
get elements of this collection (probably cached).
-
getElement
@CheckReturnValue @Nonnull org.openqa.selenium.WebElement getElement(int index)
get Nth element of this collection
-
description
@CheckReturnValue @Nonnull java.lang.String description()
-
driver
@CheckReturnValue @Nonnull Driver driver()
-
-