public class ByAll extends By implements java.io.Serializable
driver.findElements(new ByAll(by1, by2))will find all elements that match by1 and then all elements that match by2. This means that the list of elements returned may not be in document order.
By.ByClassName, By.ByCssSelector, By.ById, By.ByLinkText, By.ByName, By.ByPartialLinkText, By.ByTagName, By.ByXPath| Modifier and Type | Method and Description |
|---|---|
WebElement |
findElement(SearchContext context)
Find a single element.
|
java.util.List<WebElement> |
findElements(SearchContext context)
Find many elements.
|
java.lang.String |
toString() |
public ByAll(By... bys)
public WebElement findElement(SearchContext context)
ByfindElement in class Bycontext - A context to use to find the elementpublic java.util.List<WebElement> findElements(SearchContext context)
ByfindElements in class Bycontext - A context to use to find the element