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

Method name

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

@param name The value of the "name" attribute to search for. @return A By which locates elements by the value of the "name" attribute.

(String name)

Source from the content-addressed store, hash-verified

71 * @return A By which locates elements by the value of the "name" attribute.
72 */
73 public static By name(String name) {
74 return new ByName(name);
75 }
76
77 /**
78 * @param tagName The element's tag name.

Calls

no outgoing calls