@param id The value of the "id" attribute to search for. @return A By which locates elements by the value of the "id" attribute.
(String id)
| 47 | * @return A By which locates elements by the value of the "id" attribute. |
| 48 | */ |
| 49 | public static By id(String id) { |
| 50 | return new ById(id); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * @param linkText The exact text to match against. |
no outgoing calls