@param linkText The exact text to match against. @return A By which locates A elements by the exact text it displays.
(String linkText)
| 55 | * @return A By which locates A elements by the exact text it displays. |
| 56 | */ |
| 57 | public static By linkText(String linkText) { |
| 58 | return new ByLinkText(linkText); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * @param partialLinkText The partial text to match against |
no outgoing calls