@param xpathExpression The XPath to use. @return A By which locates elements via XPath.
(String xpathExpression)
| 87 | * @return A By which locates elements via XPath. |
| 88 | */ |
| 89 | public static By xpath(String xpathExpression) { |
| 90 | return new ByXPath(xpathExpression); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Find elements based on the value of the "class" attribute. Only one class name should be used. |
no outgoing calls