-
Notifications
You must be signed in to change notification settings - Fork 195
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
Clearing input cancel list in Element Send Keys #1809
Comments
As far as I can see this failing test is caused by a defect in the spec w3c/webdriver#1809?
I suspect that "undo actions" in
|
@grokys Hello. I'm struggling with the same task as you trying to implement actions handling according to the spec, and I think the spec has a bigger flaw, that confused you and me regarding the Any Looking at the description of a dispatch actions for a string, we can see that Adding to a confusion here: we have a global key state, which combines the state of possibly multiple key input sources, but it's not used during key events processing. Let's assume that we called |
Found another inconsistency in spec: |
Am trying to implement this specification and have run into the same issue - does anyone involved with the spec have any comment on this? Are the specs still being updated? |
Element Send Keys
details the following steps:Dispatch actions for a string
then eventually dispatcheskeyDown
actions, which indispatch tick actions
says:Once that is done we arrive at step 14 in
Element Send Keys
:Remove an input source
. This says:But I can't find the place in the spec where the input cancel list should be cleared: the only reference to clearing the input cancel list is in
Release Actions
.The text was updated successfully, but these errors were encountered: