selectEmailInputElement method

List<HTMLInputElement> selectEmailInputElement()

Selects the EmailInputElement elements (<input type="email">).

Implementation

List<HTMLInputElement> selectEmailInputElement() =>
    querySelectorAllTyped<HTMLInputElement>(
        "input[type='email']", Web.HTMLInputElement);