w3c / webdriver

Remote control interface that enables introspection and control of user agents.
https://w3c.github.io/webdriver/
Other
676 stars 190 forks source link

Spec: 12.5.1 Element Click: "pointer up action" is not used #1780

Closed silvasur closed 6 months ago

silvasur commented 6 months ago

In https://www.w3.org/TR/webdriver/#dfn-element-click, Step 8 → Otherwise → Step 13, it says:

Let pointer up action be an action object constructed with arguments input id, "mouse", and "pointerUp" as arguments.

But "pointer up action" is then not used.

My guess is that this should have been used in Step 8 → Otherwise → Step 15? So instead of

Let actions be the list «pointer move action, pointer down action, pointer move action»

I think this should be

Let actions be the list «pointer move action, pointer down action, pointer up action».

silvasur commented 6 months ago

This seems to have been fixed in the meantime. Closing the issue.