public class ByChained extends By
driver.findElements(new ByChained(by1, by2))will find all elements that match by2 and appear under an element that matches by1.
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 ByChained(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