selectPasswordInputElement method

List<HTMLInputElement> selectPasswordInputElement()

Selects the PasswordInputElement elements (<input type="password">).

Implementation

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