webdriver
webdriver copied to clipboard
Remote control interface that enables introspection and control of user agents.
DOM properties could be complex objects, even elements. One can return properties using [Get Element Property](https://w3c.github.io/webdriver/#dfn-get-element-property), but we don’t sanitise/serialise the data before returning it across the wire. I’m assuming...
The [New Window](https://w3c.github.io/webdriver/#new-window) command doesn't actually await the load of the initial `about:blank` page within the newly opened tab or window. Given that the load of about:blank is not synchronous...
Currently, various implementations have pretty useless behaviour in face of some errors (e.g., both GeckoDriver and ChromeDriver seem to return `null` for `execute script` if the content process crashes). We...
Here the relevant part of the spec: > 14.1 Element Click > > 9. Perform implementation-defined steps to allow any navigations triggered by the click to start. > > 10....
With my recent changes on #1556 we do not run a check for user prompts when the current browsing context is already the top-level browsing context. The question is if...
I'm checking several failures in the key event tests that I'm getting in WebKit and I'm not sure what the expected behavior is. The WebDriver spec has a table of...
Almost all of our uses of "getting the property" are followed by validation, but this case is not. From IRC: 16:59 < @whimboo> gsnedders: we left it open for possible...
At the moment the validation step is: > If url is not an absolute URL or is not an absolute URL with fragment or not a local scheme, return error...
Continuing the discussion in https://github.com/w3c/webdriver/issues/1378#issuecomment-673356461 This came up from trying to create web platform tests that take srcset into account. All browser engines today contain an option to emulate devicePixelRatio....
After a recent survey for Blink Developers setting zoom level and screen resolution manipulation. This is around being to do a text/layout zoom of a web page.