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

Via the [CODEOWNERS](https://github.com/w3c/webdriver/blob/master/CODEOWNERS) file we currently have three owners of the repository. These are @shs96c @AutomatedTester and @jgraham. Whenever someone is working on a PR and requesting review the question...

This question comes from the following geckodriver issue: https://github.com/mozilla/geckodriver/issues/2007 Chrome/chromedriver currently throws if Find Element by "tag name" is used with an empty string as the tag name, whereas Firefox/geckodriver...

Find Element
Find Elements
Find Element From Element
Find Elements From Element
needs-discussion

WebDriver is currently unable to simulate the action of an [IME](https://en.wikipedia.org/wiki/Input_method) in user input. These are widely used, particuarly when inputting scripts where there are far more available characters than...

enhancement
Element Send Keys
needs-discussion

A common issue when automating with WebDriver is that other elements block access to a desired element to interact with. Some drivers, e.g. Chromedriver provide a somewhat useful message like:...

Element Click

Currently Safari and Chrome behave different when it comes to getting text from an element. Safari respects whitespaces while Chrome trims it. E.g.: Safari Example (using WebdriverIO) ``` 2022-09-02T14:21:21.635Z INFO...

The spec currently says that before interacting with an element, it needs to be scrolled into view: > To scroll into view an [element](https://w3c.github.io/webdriver/#dfn-elements) perform the following steps only if...

https://w3c.github.io/webdriver/#take-screenshot It appears that the spec is missing a step for the Take Screenshot command to handle user prompts after ensuring there is a browsing context and before taking the...

There is currently a gray area in the specification when doing window sizing for: Set Window Rect Maximize Fullscreen Set Window Rect explicitly says to set the browser chrome size...

enhancement
Set Window Rect

## Problem Currently there is no way for developers to automate autofill in browsers and thus they can't test their HTML with the browser's autofill behaviour. Adding such an API...

needs-discussion

This is a rough sketch PR to demonstrate how one can resolve #1796 As this is our first time contributing to WebDriver, feedback on the overall approach, as well as...