webdriver
webdriver copied to clipboard
Remote control interface that enables introspection and control of user agents.
In https://github.com/w3c/webdriver-bidi/pull/24/files#r434807040 I did some testing of "[firstMatch](https://w3c.github.io/webdriver/#processing-capabilities)" handling. Simplifying it here, I tried POSTing this payload to `/session` with chromedriver, geckodriver and safaridriver: ```json { "capabilities": { "firstMatch": [...
In chapter [12. Elements](https://w3c.github.io/webdriver/#print#x12-elements), section [12.4 Interaction](https://w3c.github.io/webdriver/#print#element-interaction): > focus How is focus defined, is it document.activeDocument == target element of send keys? Say if we have a content editable body...
This is the feature that was discussed at TPAC. What wasn't mentioned was this implementation where scripts are associated with names. The idea is that intermediary nodes (like Sauce) can...
Gerardo Capiel: > Provide similar methods for audio and/or video recording as to take screenshots.
The algorithm for encoding a canvas element to abse64 effectively says to convert it into a data url and then remove the url part, leaving only the data part after...
When testing websites a developer may wish to test a WheelEvent. I propose that we add a new "pointerWheel" subtype to the "pointer" action. Then there would be a "pointer...
This is a bit of a weird one, so apologies in advance. In chapter [E. Index](https://www.w3.org/TR/webdriver/#dfn-date-state#e-index): > Date state > Local Date and Time state The display format for the...
The add cookie command doesn't spell out the exact format of the cookie domain value, based on the current behavior of browsers I think the expectation is something like: *...
In chapter [17. Screen capture](https://w3c.github.io/webdriver/#take-element-screenshot#x17-screen-capture), section [17.2 Take Element Screenshot](https://w3c.github.io/webdriver/#take-element-screenshot#x17-2-take-element-screenshot): > The Take Element Screenshot command takes a screenshot of the visible region encompassed by the bounding rectangle of an...
https://github.com/w3c/webdriver/issues/1441 and https://github.com/w3c/webdriver/issues/1439 need the accessibility tree to be available. @cookiecrook pointed out that it may need an opt-in instead of being always available because in browsers today the accessibility...