-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type() expects input type to be lowercase #550
Comments
Have confirmed bug. |
The code for this is done, but this has yet to be released. We'll update the issue and reference the changelog when it's released. |
Fixed in |
I'm still getting an error similar to this. I have 3 inputs that dynamically show depending on a button click. Typing in the first input works, however typing in the second fails with this error:
|
@caseybaggz This is actually related to this issue: #586 This error is displaying because type='input' is not a valid input type: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input |
@jennifer-shehane wow...I have been working too much lately to have overlooked that. Thanks for the humble comment. |
Is this a Feature or Bug?
This is a bug.
Current behavior:
I have a form with an input field
<input type="PASSWORD" id="PASSWORD" />
.I get the error:
Desired behavior:
This is an input element, so I would expect the input to be entered.
How to reproduce:
Create an input with
type = "PASSWORD"
(uppercase), and trytype()
.Test code:
The text was updated successfully, but these errors were encountered: