hasNodeName function

Matcher hasNodeName(
  1. String nodeName
)

Returns a matcher that matches an element with the nodeName of nodeName.

Implementation

Matcher hasNodeName(String nodeName) => IsNode(equalsIgnoringCase(nodeName));