selenium
selenium copied to clipboard
A browser automation framework and ecosystem.
### Feature and motivation .NET 6.0 SDK was recently publicly released, so we should consider adding .NET 6 to the list of target frameworks for each dotnet project. Not much...
### What happened? Bazel build documentation outdated and unable to build dotnet sources using Bazel on Windows. Steps like correctly setting up VCTools and MSBuild environment variables are unclear and...
## 🐛 Bug Report Elements with attribute 'fragment' are not visible. Impossible to interact with child elements. Root Cause vue.js uses a concept called Fragments to create more than one...
## 🚀 Feature Proposal Type hints in Python are specified by [PEP 484](https://www.python.org/dev/peps/pep-0484/) and are of a great help when developing, thus proposing to add them to Python codebase. Would...
### What happened? We use Network monitoring to log requests and responses for failed tests. ```csharp var network = _driver.Manage().Network; await network.StartMonitoring(); network.NetworkRequestSent += NetworkRequestSent; network.NetworkResponseReceived += NetworkResponseReceived; ``` Unfortunately,...
### What happened? It works expected in version 4.0, but when I upgrade to 4.1, I get the error: `{ id: 2, error: { code: -32601, message: "'SystemInfo.getProcessInfo' wasn't found"...
### Feature and motivation With the [WebDriver BiDi specification](https://w3c.github.io/webdriver-bidi/) moving forward it would be great to see support for this protocol being added to Selenium. In case of Firefox we...
### What happened? Just wonder if the correct behaivor of getCssValue. 1. What's the actual expected return value for getCssValue(shorthand) 2. Any missed description in Java doc Below is the...
### What happened? WebdriverJS FluentWait works in Javascript as per the example in the [documentation](https://www.selenium.dev/documentation/webdriver/waits/#fluentwait). However in TypeScript we are missing the types for the 4th parameter (the frequency at...
### Feature and motivation I've just started using Selenium 4's Chrome DevTools integration and it's amazingly powerful. I found myself using it to capture request/response data while running a test,...