We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Class FormElement:
protected boolean isFormElement(WebElement element) { if (element == null) { return false; } String tag = element.getTagName().toLowerCase(); return tag == "input" || tag == "select" || tag == "textarea" || tag == "button" || tag == "option"; }