MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / linkText

Method linkText

java/src/org/openqa/selenium/By.java:57–59  ·  view source on GitHub ↗

@param linkText The exact text to match against. @return A By which locates A elements by the exact text it displays.

(String linkText)

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls