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

Method tagName

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

@param tagName The element's tag name. @return A By which locates elements by their tag name.

(String tagName)

Source from the content-addressed store, hash-verified

79 * @return A By which locates elements by their tag name.
80 */
81 public static By tagName(String tagName) {
82 return new ByTagName(tagName);
83 }
84
85 /**
86 * @param xpathExpression The XPath to use.

Calls

no outgoing calls