You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The algorithm starting with "When the user requests that focus move" is typically invoked by pressing the TAB key, but this may not be universally true. Having a WebDriver API for this would make it possible to trigger focus navigation without making such assumptions.
Straw proposal: An endpoint /session/{session id}/focus to which one would POST { "direction": "forward" } or { "direction": "backward" }.
This is a clone of whatwg/html#4151, since this could be defined either in WebDriver or in HTML.
The bit that requires a WebDriver endpoint:
https://html.spec.whatwg.org/multipage/interaction.html#sequential-focus-navigation
The algorithm starting with "When the user requests that focus move" is typically invoked by pressing the TAB key, but this may not be universally true. Having a WebDriver API for this would make it possible to trigger focus navigation without making such assumptions.
Straw proposal: An endpoint
/session/{session id}/focus
to which one would POST{ "direction": "forward" }
or{ "direction": "backward" }
.This would help resolve web-platform-tests/wpt#13379, although it is not the only way it could be resolved.
The text was updated successfully, but these errors were encountered: