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

Method ByLinkText

java/src/org/openqa/selenium/By.java:204–211  ·  view source on GitHub ↗
(String linkText)

Source from the content-addressed store, hash-verified

202 private final String linkText;
203
204 public ByLinkText(String linkText) {
205 super(
206 "link text",
207 Require.argument("Link text", linkText)
208 .nonNull("Cannot find elements when the link text is null."));
209
210 this.linkText = linkText;
211 }
212
213 @Override
214 public String toString() {

Callers

nothing calls this directly

Calls 2

argumentMethod · 0.95
nonNullMethod · 0.45

Tested by

no test coverage detected