webdriver icon indicating copy to clipboard operation
webdriver copied to clipboard

Remote control interface that enables introspection and control of user agents.

Results 229 webdriver issues
Sort by recently updated
recently updated
newest added

Consider the following code, ```javascript new test_driver.Actions().pointerMove(0, 0).send(); ``` Per spec, [the `x` and `y` of new created **input source state** are both initialized to 0](https://w3c.github.io/webdriver/#dfn-input-source-state). And the first pointer...

In my opinion Section 18 contains not correct logic. - User prompts that are spawned from beforeunload event handlers, are dismissed implicitly upon navigation or close window, regardless of the...

bug
Navigate To
Close Window
needs-discussion

What should the behaviour be given: ``` wd = new Session(); wd.execute("window.close()"); ``` As far as I can tell the spec fails to account for this at all. The session...

The _Element Click_ command is currently unable to interact with (hit) elements inside ``s that are outside the viewport because it does not bring the `` into view first. This...

bug

Right now the WebDriver spec for [Element Click](https://w3c.github.io/webdriver/#element-click) requires a `Try to wait for navigation to complete`. Given the uncertainty when a navigation actually gets started after the click event,...

In chapter [12. Elements](https://w3c.github.io/webdriver/#get-element-rect#x12-elements), section [12.3 State](https://w3c.github.io/webdriver/#get-element-rect#x12-3-state): > Calculate the absolute position of element and let it be coordinates. I received a bug report that safaridriver's Get Element Rect command...

Personally I rarely if ever use/have seen using `By.linkText`/`By.partialLinkText` in a Selenium project. The reason is that: #### 1. Most of the times you are able to locate the link...

As various browser engines collaborate in the area of new privacy interventions, it's becoming increasingly important to be able to write web-platform tests for the cross-engine behaviour that web developers...

In particular for JSON there are some nice primitives at https://infra.spec.whatwg.org/#json that we already use elsewhere in the browser that seem good to align on.

It looks like there's a bug in https://w3c.github.io/webdriver/#dfn-capabilities-processing. The "alwaysMatch" capabilities are extracted into a *required capabilities* variable, while the "firstMatch" capabilities array are extracted into a *all first match...