We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With @BlancaInesAcosta we prepared a simple example that shows the problem: https://codepen.io/blancainesacosta/full/wxQBZB/ with the following sideex test case:
open https://codepen.io/blancainesacosta/full/wxQBZB/ selectFrame index=0 clickAt id=name 66,10 type id=name thename type id=age 33
The following picture shows the sideex output
The problem occurrs in input fields with the attribute type='number'. We also have seen the same problem in fields with attribute type='email'
type='number'
type='email'
A workaround we have been using is to remove such attribute before the command type. In this example it could be with:
type
runScript document.getElementById("age").removeAttribute("type");
as the following picture presents:
The text was updated successfully, but these errors were encountered:
Did you try removing .removeAttribute("type)"
Sorry, something went wrong.
The initial example doesn't have that, and it doesn't work. I added .removeAttribute ... as a workaround to make it work.
No branches or pull requests
With @BlancaInesAcosta we prepared a simple example that shows the problem:
https://codepen.io/blancainesacosta/full/wxQBZB/
with the following sideex test case:
The following picture shows the sideex output
The problem occurrs in input fields with the attribute
type='number'
. We also have seen the same problem in fields with attributetype='email'
A workaround we have been using is to remove such attribute before the command
type
.In this example it could be with:
as the following picture presents:

The text was updated successfully, but these errors were encountered: