Find all elements within the current context using the given mechanism. When using xpath be aware that webdriver follows standard conventions: a search prefixed with "//" will search the entire document, not just the children of this current node. Use ".//" to limit your search to the children of th
(By by)
| 243 | * @see org.openqa.selenium.WebDriver.Timeouts |
| 244 | */ |
| 245 | @Override |
| 246 | List<WebElement> findElements(By by); |
| 247 | |
| 248 | /** |
no outgoing calls