@param name The value of the "name" attribute to search for. @return A By which locates elements by the value of the "name" attribute.
(String name)
| 71 | * @return A By which locates elements by the value of the "name" attribute. |
| 72 | */ |
| 73 | public static By name(String name) { |
| 74 | return new ByName(name); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * @param tagName The element's tag name. |
no outgoing calls