@param partialLinkText The partial text to match against @return a By which locates elements that contain the given link text.
(String partialLinkText)
| 63 | * @return a By which locates elements that contain the given link text. |
| 64 | */ |
| 65 | public static By partialLinkText(String partialLinkText) { |
| 66 | return new ByPartialLinkText(partialLinkText); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * @param name The value of the "name" attribute to search for. |
no outgoing calls