@param tagName The element's tag name. @return A By which locates elements by their tag name.
(String tagName)
| 79 | * @return A By which locates elements by their tag name. |
| 80 | */ |
| 81 | public static By tagName(String tagName) { |
| 82 | return new ByTagName(tagName); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * @param xpathExpression The XPath to use. |
no outgoing calls