public class ByChained
extends org.openqa.selenium.By
implements java.io.Serializable
driver.findElements(new ByChained(by1, by2))will find all elements that match by2 and appear under an element that matches by1.
org.openqa.selenium.By.ByClassName, org.openqa.selenium.By.ByCssSelector, org.openqa.selenium.By.ById, org.openqa.selenium.By.ByLinkText, org.openqa.selenium.By.ByName, org.openqa.selenium.By.ByPartialLinkText, org.openqa.selenium.By.ByTagName, org.openqa.selenium.By.ByXPath| Modifier and Type | Field and Description |
|---|---|
private org.openqa.selenium.By[] |
bys |
private static long |
serialVersionUID |
| Constructor and Description |
|---|
ByChained(org.openqa.selenium.By... bys) |
| Modifier and Type | Method and Description |
|---|---|
org.openqa.selenium.WebElement |
findElement(org.openqa.selenium.SearchContext context) |
java.util.List<org.openqa.selenium.WebElement> |
findElements(org.openqa.selenium.SearchContext context) |
java.lang.String |
toString() |
private static final long serialVersionUID
private org.openqa.selenium.By[] bys
public org.openqa.selenium.WebElement findElement(org.openqa.selenium.SearchContext context)
findElement in class org.openqa.selenium.Bypublic java.util.List<org.openqa.selenium.WebElement> findElements(org.openqa.selenium.SearchContext context)
findElements in class org.openqa.selenium.Bypublic java.lang.String toString()
toString in class org.openqa.selenium.By