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

Method partialLinkText

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

@param partialLinkText The partial text to match against @return a By which locates elements that contain the given link text.

(String partialLinkText)

Source from the content-addressed store, hash-verified

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.

Calls

no outgoing calls