https://github.com/SeleniumHQ/selenium
A browser automation framework and ecosystem.
https://github.com/SeleniumHQ/selenium
Keywords
dotnet java javascript python ruby rust selenium webdriver
Keywords from Contributors
activerecord rubygems mvc activejob rubocop rspec static-code-analysis code-formatter crash-reporting ruby-gem
Last synced: about 22 hours ago
JSON representation
Repository metadata
A browser automation framework and ecosystem.
- Host: GitHub
- URL: https://github.com/SeleniumHQ/selenium
- Owner: SeleniumHQ
- License: apache-2.0
- Created: 2013-01-14T21:40:56.000Z (about 13 years ago)
- Default Branch: trunk
- Last Pushed: 2026-02-19T00:52:23.000Z (13 days ago)
- Last Synced: 2026-02-19T06:19:03.616Z (13 days ago)
- Topics: dotnet, java, javascript, python, ruby, rust, selenium, webdriver
- Language: Java
- Homepage: https://selenium.dev
- Size: 2.17 GB
- Stars: 34,045
- Watchers: 1,261
- Forks: 8,647
- Open Issues: 212
- Releases: 267
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Authors: AUTHORS
- Notice: NOTICE
- Agents: AGENTS.md
README.md
Selenium is an umbrella project encapsulating a variety of tools and
libraries enabling web browser automation. Selenium specifically
provides an infrastructure for the W3C WebDriver specification
— a platform and language-neutral coding interface compatible with all
major web browsers.
The project is made possible by volunteer contributors who've
generously donated thousands of hours in code development and upkeep.
This README is for developers interested in contributing to the project.
For people looking to get started using Selenium, please check out
our User Manual for detailed examples and descriptions, and if you
get stuck, there are several ways to Get Help.
Contributing
Please read CONTRIBUTING.md
before submitting your pull requests.
Installing
These are the requirements to create your own local dev environment to contribute to Selenium.
All Platforms
- Bazelisk, a Bazel wrapper that automatically downloads
the version of Bazel specified in.bazelversionfile and transparently passes through all
command-line arguments to the real Bazel binary. - Java JDK version 17 or greater (e.g., Java 17 Temurin)
- Set
JAVA_HOMEenvironment variable to location of Java executable (the JDK not the JRE) - To test this, try running the command
javac. This command won't exist if you only have the JRE
installed. If you're met with a list of command-line options, you're referencing the JDK properly.
- Set
MacOS
- Xcode including the command-line tools. Install the latest version using:
xcode-select --install - Rosetta for Apple Silicon Macs. Add
build --host_platform=//:rosettato the.bazelrc.localfile. We are working
to make sure this isn't required in the long run.
Windows
Several years ago Jim Evans published a great article on
Setting Up a Windows Development Environment for the Selenium .NET Language Bindings;
This article is out of date, but it includes more detailed descriptions and screenshots that some people might find useful.
Option 1: Automatic Installation from Scratch
This script will ensure a complete ready to execute developer environment.
(nothing is installed or set that is already present unless otherwise prompted)
- Open Powershell as an Administrator
- Execute:
Set-ExecutionPolicy Bypass -Scope Process -Forceto allow running the script in the process - Navigate to the directory you want to clone Selenium in, or the parent directory of an already cloned Selenium repo
- Download and execute this script in the powershell terminal: [scripts/dev-environment-setup.ps1]`
Option 2: Manual Installation
- Allow running scripts in Selenium in general:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned - Enable Developer Mode:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1" - Install MSYS2, which is an alternative shell environment that provides Unix-like commands
- Add bin directory to
PATHenvironment variable (e.g.,"C:\tools\msys64\usr\bin") - Add
bash.exelocation as theBAZEL_SHenvironment variable (e.g.,"C:\tools\msys64\usr\bin\bash.exe")
- Add bin directory to
- Install the latest version of Visual Studio Community
- Use the visual studio installer to modify and add the "Desktop development with C++" Workload
- Add Visual C++ build tools installation directory location to
BAZEL_VCenvironment variable (e.g."C:\Program Files\Microsoft Visual Studio\2022\Community\VC") - Add Visual C++ Build tools version to
BAZEL_VC_FULL_VERSIONenvironment variable (this can be discovered from the directory name in"$BAZEL_VC\Tools\MSVC\<BAZEL_VC_FULL_VERSION>")
- Add support for long file names (bazel has a lot of nested directories that can exceed default limits in Windows)
- Enable Long Paths support with these 2 registry commands:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor" /t REG_DWORD /f /v "DisableUNCCheck" /d "1" reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem" /t REG_DWORD /f /v "LongPathsEnabled" /d "1"- Allow Bazel to create short name versions of long file paths:
fsutil 8dot3name set 0 - Set bazel output to
C:/tmpinstead of nested inside project directory:- Create a file
selenium/.bazelrc.windows.local - Add "startup --output_user_root=C:/tmp" to the file
- Create a file
Alternative Dev Environments
If you want to contribute to the project, but do not want to set up your own local dev environment,
there are two alternatives available.
Using GitPod
Rather than creating your own local dev environment, GitPod provides a ready to use environment for you.
Using Dev Container
As an alternative you can build a Dev Container - basically a docker container -
suitable for building and testing Selenium using the devcontainer.json in the
.devcontainer directory. Supporting IDEs like VS Code or IntelliJ IDEA
should point you to how such a container can be created.
Using Docker Image
You can also build a Docker image suitable
for building and testing Selenium using the Dockerfile in the
dev image directory.
Building
Selenium is built using a common build tool called Bazel, to
allow us to easily manage dependency downloads, generate required binaries, build and release packages, and execute tests;
all in a fast, efficient manner. For a more detailed discussion, read Simon Stewart's article on Building Selenium
Often we wrap Bazel commands with our custom Rake wrapper. These are run with the ./go command.
The common Bazel commands are:
bazel build— evaluates dependencies, compiles source files and generates output files for the specified target.
It's used to create executable binaries, libraries, or other artifacts.bazel run— builds the target and then executes it.
It's typically used for targets that produce executable binaries.bazel test— builds and runs the target in a context with additional testing functionalitybazel query— identifies available targets for the provided path.
Each module that can be built is defined in a BUILD.bazel file. To execute the module you refer to it starting with a
//, then include the relative path to the file that defines it, then :, then the name of the target.
For example, the target to build the Grid is named executable-grid and it is
defined in the 'selenium/java/src/org/openqa/selenium/grid/BAZEL.build' file.
So to build the grid you would run: bazel build //java/src/org/openqa/selenium/grid:executable-grid.
The Bazel documentation has a handy guide
for various shortcuts and all the ways to build multiple targets, which Selenium makes frequent use of.
To build everything for a given language:
bazel build //<language>/...
To build just the grid there is an alias name to use (the log will show where the output jar is located):
bazel build grid
To make things more simple, building each of the bindings is available with this ./go command:
./go <language>:build
Developing
Java
IntelliJ
Most of the team uses Intellij for their day-to-day editing. If you're
working in IntelliJ, then we highly recommend installing the Bazel IJ
plugin which is documented on
its own site.
To use Selenium with the IntelliJ Bazel plugin, import the repository as a Bazel project, and select the project
view file from the scripts directory. ij.bazelproject for Mac/Linux and ij-win.bazelproject for Windows.
Linting
We also use Google Java Format for linting, so using the Google Java Formatter Plugin is useful;
there are a few steps to get it working, so read their configuration documentation.
There is also an auto-formatting script that can be run: ./scripts/format.sh
Local Installation
While Selenium is not built with Maven, you can build and install the Selenium pieces
for Maven to use locally by deploying to your local maven repository (~/.m2/repository), using:
./go java:install
Updating Dependencies
Dependencies are defined in the file MODULE.bazel.
To update a dependency, modify the version in the MODULE.bazel file and run:
RULES_JVM_EXTERNAL_REPIN=1 bazel run @maven//:pin
To automatically update and pin new dependencies, run:
./go java:update
Python
Linting and Formatting
We follow the PEP8 Style Guide for Python Code (except we use a 120 character line length).
This is checked and enforced with ruff, a linting/formatting tool.
There is also an auto-formatting script that can be run: ./scripts/format.sh
Local Installation
To run Python code locally without building/installing the package, you must first install the dependencies:
pip install -r py/requirements.txt
Then, build the generated files and copy them into your local source tree:
./go py:local_dev
After that, you can import the selenium package directly from source from the py directory.
Instead of running from source, you can build and install the selenium package (wheel) locally:
./go py:install
This will attempt to install into the global Python site-packages directory,
which might not be writable. To avoid this, you should create and activate a
virtual environment
before installing.
Ruby
Instead of using irb, you can create an interactive REPL with all gems loaded using: bazel run //rb:console
If you want to debug code, you can do it via debug gem:
- Add
binding.breakto the code where you want the debugger to start. - Run tests with
ruby_debugconfiguration:bazel test --config ruby_debug <test>. - When debugger starts, run the following in a separate terminal to connect to debugger:
bazel-selenium/external/bundle/bin/rdbg -A
If you want to use RubyMine for development,
you can configure it use Bazel artifacts:
- Open
rb/as a main project directory. - From the
selenium(parent) directory, run./go rb:local_devto create up-to-date artifacts. - In Settings / Languages & Frameworks / Ruby SDK and Gems add new Interpreter pointing to
../bazel-selenium/external/rules_ruby++ruby+ruby/dist/bin/ruby. - You should now be able to run and debug any spec. It uses Chrome by default, but you can alter it using environment variables specified in Ruby Testing section below.
Rust
To keep Cargo.Bazel.lock synchronized with Cargo.lock, run:
CARGO_BAZEL_REPIN=true bazel run @crates//:all
Testing
There are a number of bazel configurations specific for testing.
Common Options Examples
Here are examples of arguments we make use of in testing the Selenium code:
--pin_browsers=false- use Selenium Manager to locate browsers/drivers--headless- run browsers in headless mode (supported be Chrome, Edge and Firefox)--flaky_test_attempts 3- re-run failed tests up to 3 times--local_test_jobs 1- control parallelism of tests--cache_test_results=no,-t-- disable caching of test results and re-runs all of them--test_output all- print all output from the tests, not just errors--test_output streamed- run all tests one by one and print its output immediately--test_env FOO=bar- pass extra environment variable to test process--run_under="xvfb-run -a"- prefix to insert before the execution
Filtering
Selenium tests can be filtered by size:
- small — typically unit tests where no browser is opened
- large — typically tests that actually drive a browser
- medium — tests that are more involved than simple unit tests, but not fully driving a browser
These can be filtered using the test_size_filters argument like this:
bazel test //<language>/... --test_size_filters=small
Tests can also be filtered by tag like:
bazel test //<language>/... --test_tag_filters=this,-not-this
If there are multiple --test_tag_filters, only the last one is considered,
so be careful if also using an inherited config
Java
To run unit tests:
bazel test //java/... --test_size_filters=small
To run integration tests:
bazel test //java/... --test_size_filters=medium
To run browser tests:
bazel test //java/... --test_size_filters=large --test_tag_filters=<browser>
To run a specific test:
bazel test //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest
JavaScript
To run the tests run:
bazel test //javascript/selenium-webdriver:all
You can use --test_env to pass in the browser name as SELENIUM_BROWSER.
bazel test //javascript/selenium-webdriver:all --test_env=SELENIUM_BROWSER=firefox
Python
Run unit tests with:
bazel test //py:unit
To run all tests with a specific browser:
bazel test //py:test-<browsername>
To run common tests with a specific browser (include BiDi tests):
bazel test //py:test-<browsername>-bidi
To run all Python tests:
bazel test //py:all
To run tests headless:
bazel test //py:test-<browsername> --//common:headless=true
Ruby
Test targets:
| Command | Description |
|---|---|
bazel test //rb/... |
Run unit, all integration tests and lint |
bazel test //rb:lint |
Run RuboCop linter |
bazel test //rb/spec/... |
Run unit and integration tests for all browsers |
bazel test //rb/spec/... --test_size_filters small |
Run unit tests |
bazel test //rb/spec/unit/... |
Run unit tests |
bazel test //rb/spec/... --test_size_filters large |
Run integration tests for all browsers |
bazel test //rb/spec/integration/... |
Run integration tests for all browsers |
bazel test //rb/spec/integration/... --test_tag_filters firefox |
Run integration tests for local Firefox only |
bazel test //rb/spec/integration/... --test_tag_filters firefox-remote |
Run integration tests for remote Firefox only |
bazel test //rb/spec/integration/... --test_tag_filters firefox,firefox-remote |
Run integration tests for local and remote Firefox |
Ruby test targets have the same name as the spec file with _spec.rb removed, so you can run them individually.
Integration tests targets also have a browser and remote suffix to control which browser to pick and whether to use Grid.
| Test file | Test target |
|---|---|
rb/spec/unit/selenium/webdriver/proxy_spec.rb |
//rb/spec/unit/selenium/webdriver:proxy |
rb/spec/integration/selenium/webdriver/driver_spec.rb |
//rb/spec/integration/selenium/webdriver:driver-chrome |
rb/spec/integration/selenium/webdriver/driver_spec.rb |
//rb/spec/integration/selenium/webdriver:driver-chrome-remote |
rb/spec/integration/selenium/webdriver/driver_spec.rb |
//rb/spec/integration/selenium/webdriver:driver-firefox |
rb/spec/integration/selenium/webdriver/driver_spec.rb |
//rb/spec/integration/selenium/webdriver:driver-firefox-remote |
Supported browsers:
chromeedgefirefoxfirefox-betaiesafarisafari-preview
In addition to the Common Options Examples, here are some additional Ruby specific ones:
--test_arg "-eTimeouts"- test only specs which name include "Timeouts"--test_arg "<any other RSpec argument>"- pass any extra RSpec arguments (seebazel run @bundle//bin:rspec -- --help)
Supported environment variables for use with --test_env:
WD_SPEC_DRIVER- the driver to test; either the browser name or 'remote' (gets set by Bazel)WD_REMOTE_BROWSER- whenWD_SPEC_DRIVERisremote; the name of the browser to test (gets set by Bazel)WD_REMOTE_URL- URL of an already running server to use for remote testsDOWNLOAD_SERVER- whenWD_REMOTE_URLnot set; whether to download and use most recently released server version for remote testsDEBUG- turns on verbose debuggingHEADLESS- for chrome, edge and firefox; runs tests in headless modeDISABLE_BUILD_CHECK- for chrome and edge; whether to ignore driver and browser version mismatches (allows testing Canary builds)CHROME_BINARY- path to test specific Chrome browserCHROMEDRIVER_BINARY- path to test specific ChromeDriverEDGE_BINARY- path to test specific Edge browserMSEDGEDRIVER_BINARY- path to test specific msedgedriverFIREFOX_BINARY- path to test specific Firefox browserGECKODRIVER_BINARY- path to test specific GeckoDriver
To run with a specific version of Ruby you can change the version in rb/.ruby-version or from command line:
echo '<X.Y.Z>' > rb/.ruby-version
.NET
.NET tests currently only work with pinned browsers, so make sure to include that.
Run all tests with:
bazel test //dotnet/test/common:AllTests
You can run specific tests by specifying the class name:
bazel test //dotnet/test/common:ElementFindingTest
If the module supports multiple browsers:
bazel test //dotnet/test/common:ElementFindingTest-edge
Rust
Rust tests are run with:
bazel test //rust/...
Linux
By default, Bazel runs these tests in your current X-server UI. If you prefer, you can
alternatively run them in a virtual or nested X-server.
- Run the X server
Xvfb :99orXnest :99 - Run a window manager, for example,
DISPLAY=:99 jwm - Run the tests you are interested in:
bazel test --test_env=DISPLAY=:99 //java/... --test_tag_filters=chrome
An easy way to run tests in a virtual X-server is to use Bazel's --run_under
functionality:
bazel test --run_under="xvfb-run -a" //java/...
Documenting
API documentation can be found here:
To update API documentation for a specific language: ./go <language>:docs
To update all documentation: ./go all:docs
Releasing
The full process for doing a release can be found in the wiki
Releasing is a combination of building and publishing, which often requires coordination of multiple executions
and additional processing.
As discussed in the Building section, we use Rake tasks with the ./go command for these things.
These ./go commands include the --stamp argument to provide necessary information about the constructed asset.
You can build and release everything with:
./go all:release
To build and release a specific language:
./go <language>:release
If you have access to the Selenium EngFlow repository, you can have the assets built remotely and downloaded locally using:
./go all:release['--config', 'release']
Owner metadata
- Name: Selenium
- Login: SeleniumHQ
- Email:
- Kind: organization
- Description: Selenium is an umbrella project for a range of tools and libraries that enable and support the automation of web browsers.
- Website: https://selenium.dev/
- Location:
- Twitter: SeleniumHQ
- Company:
- Icon url: https://avatars.githubusercontent.com/u/983927?v=4
- Repositories: 20
- Last ynced at: 2025-10-06T20:02:15.485Z
- Profile URL: https://github.com/SeleniumHQ
GitHub Events
Total
- Create event: 329
- Commit comment event: 34
- Release event: 328
- Delete event: 313
- Member event: 1
- Pull request event: 1931
- Fork event: 532
- Issues event: 1023
- Watch event: 2899
- Issue comment event: 7649
- Push event: 2170
- Gollum event: 8
- Pull request review event: 1939
- Pull request review comment event: 1505
Last Year
- Create event: 329
- Commit comment event: 34
- Release event: 328
- Delete event: 313
- Member event: 1
- Pull request event: 1931
- Fork event: 532
- Issues event: 1023
- Watch event: 2899
- Issue comment event: 7649
- Push event: 2170
- Gollum event: 8
- Pull request review event: 1939
- Pull request review comment event: 1505
Committers metadata
Last synced: 9 days ago
Total Commits: 34,064
Total Committers: 915
Avg Commits per committer: 37.228
Development Distribution Score (DDS): 0.843
Commits in past year: 1,459
Committers in past year: 70
Avg Commits per committer in past year: 20.843
Development Distribution Score (DDS) in past year: 0.757
| Name | Commits | |
|---|---|---|
| Simon Stewart | s****t@g****m | 5363 |
| Alexei Barantsev | b****v@g****m | 3339 |
| Jim Evans | j****r@g****m | 2468 |
| Titus Fortner | t****r@g****m | 1946 |
| Jason Leyba | j****a@g****m | 1464 |
| Diego Molina | d****l@g****m | 1377 |
| Jari Bakken | j****n@g****m | 1299 |
| David Burns | d****s@t****k | 1224 |
| Dan Fabulich | d****n@f****m | 1175 |
| Daniel Wagner-Hall | d****r@g****m | 1161 |
| Alex Rodionov | p****e@g****m | 663 |
| Luke Inman-Semerau | l****u@g****m | 599 |
| Puja Jagani | p****3@g****m | 554 |
| Nelson Sproul | n****l@b****m | 528 |
| Paul Hammant | p****t@g****m | 477 |
| Eran Messeri | e****s@g****m | 472 |
| Dounia Berrada | b****a@g****m | 406 |
| Shinya Kasatani | s****a@e****m | 399 |
| Nikolay Borisenko | n****o@g****m | 369 |
| Darrell DeBoer | d****r@g****m | 365 |
| Boni García | b****a@u****s | 352 |
| Mike Williams | m****b@d****g | 326 |
| Andreas Tolf Tolfsen | a****o@m****m | 289 |
| Selenium CI Bot | d****i@g****m | 280 |
| Patrick Lightbody | p****o@g****m | 261 |
| Jörg Sautter | j****r@g****t | 227 |
| Kristian Rosenvold | k****d@a****g | 225 |
| Adam Goucher | a****r@h****m | 225 |
| Sri Harsha | s****9@h****m | 217 |
| Jason Huggins | j****s@g****m | 205 |
| and 885 more... | ||
Committer domains:
- google.com: 18
- microsoft.com: 7
- yandex-team.ru: 5
- chromium.org: 5
- gmx.at: 4
- thoughtworks.com: 4
- opera.com: 3
- igalia.com: 3
- yandex.ru: 3
- test.com: 3
- redhat.com: 3
- mozilla.com: 3
- netflix.com: 2
- me.com: 2
- vaadin.com: 2
- saucelabs.com: 2
- naver.com: 2
- 126.com: 2
- salesforce.com: 2
- msn.com: 2
- gmx.net: 2
- apache.org: 2
- nitor.fi: 1
- g.rit.edu: 1
- opengroupware.ch: 1
- camptocamp.com: 1
- inin.com: 1
- shuhai.zrh.corp.google.com: 1
- solitarysnail.com: 1
- roxtr.com: 1
- alterian.com: 1
- web-share.nl: 1
- shutterfly.com: 1
- 3dprogramin.io: 1
- outlook.cz: 1
- airtime.com: 1
- vinogradoff.de: 1
- tinfoilsecurity.com: 1
- olark.com: 1
- musicinmybrain.net: 1
- hey.com: 1
- yahoo.co.id: 1
- umich.edu: 1
- tkachenko.io: 1
- melix.net: 1
- oracle.com: 1
- shaw.ca: 1
- e-experts.ch: 1
- livingsocial.com: 1
- propellerads.net: 1
- pixelmedia.com: 1
- zeuss.com: 1
- bskyb.com: 1
- us.ibm.com: 1
- cerner.com: 1
- conceptblossom.com: 1
- fspa.myntet.se: 1
- imagination.com: 1
- mutualmobile.com: 1
- steve-lenovo-ideapad-u260.(none): 1
- scivisum.co.uk: 1
- canonical.com: 1
- aol.com: 1
- clarkenciel.com: 1
- 418sec.com: 1
- dnainternet.net: 1
- misoenergy.org: 1
- perfectomobile.com: 1
- pickl.eu: 1
- permeance.com.au: 1
- sdv-it.de: 1
- jp.ricoh.com: 1
- akvelon.com: 1
- verizon.net: 1
- bldm.us: 1
- mail.ru: 1
- wattisup.com: 1
- gmail.come: 1
- wiredrive.com: 1
- bluehost.com: 1
- jamadam.com: 1
- lazeryattack.com: 1
- graylog.com: 1
- boelzle.org: 1
- apple.com: 1
- amazon.com: 1
- lidskog.se: 1
- columbia.edu: 1
- groupon.com: 1
- hskupin.info: 1
- yahoo.co.jp: 1
- 5elementslearning.dev: 1
- rbri.de: 1
- corevo.io: 1
- pettichord.com: 1
- mach6.net: 1
- dogbiscuit.org: 1
- uc3m.es: 1
- bea.com: 1
- fabulich.com: 1
- gainsight.com: 1
- kavdev.io: 1
- chevah.com: 1
- astoundcommerce.com: 1
- adverity.com: 1
- debian.org: 1
- inlogik.com: 1
- intuit.com: 1
- blackberry.com: 1
- mikepennisi.com: 1
- thequod.de: 1
- gentoo.org: 1
- scalesoft.cz: 1
- saritasa.com: 1
- purelyfunctional.org: 1
- dbrgn.ch: 1
- neam.se: 1
- vrana.cz: 1
- labkey.com: 1
- rambler.ru: 1
- animoto.com: 1
- olejnik.net: 1
- gmx.de: 1
- paroga.com: 1
- degenfellner.com: 1
- awesame.org: 1
- lucidchart.com: 1
- theautomatedtester.co.uk: 1
- ebay.com: 1
- rubicon.eu: 1
- ioncannon.net: 1
- rlesthom.as: 1
- bbva.com: 1
- panopto.com: 1
- pobox.com: 1
- senaeh.de: 1
- lacamb.re: 1
- bubblenet.be: 1
- stillhope.com: 1
- ham1.co.uk: 1
- proofpoint.com: 1
- smartekworks.com: 1
- cantab.net: 1
- treby.info: 1
- silentsoft.org: 1
- elliterate.com: 1
- kozhevnikov.com: 1
- dylanlacey.com: 1
- sil.org: 1
- conductor.com: 1
- hemdal.se: 1
- hush.com: 1
- roldukhin.ru: 1
- qq.com: 1
- knorrium.info: 1
- netcare.de: 1
- apolloner.eu: 1
- develophp.org: 1
- donarproject.org: 1
- ncbi.nlm.nih.gov: 1
- bandenburg.com: 1
- 403forbidden.ca: 1
- vania-pooh.com: 1
- wejendorp.dk: 1
- iosphere.de: 1
- prodigygame.com: 1
- candeira.com: 1
- nes.33mail.com: 1
- jensdiemer.de: 1
- rkchristian.ca: 1
- there.co.nz: 1
- mruder.dev: 1
- kresin.me: 1
- rawu.dk: 1
- irregular.at: 1
- schmitt.mx: 1
- foconis.de: 1
- mike.is: 1
- sparkstone.co.nz: 1
- terreon.de: 1
- poczta.fm: 1
- digitalguardian.com: 1
- lrowe.co.uk: 1
- ancestry.com: 1
- dana.sh: 1
- danielrozenberg.com: 1
- orionrobots.co.uk: 1
- ethz.ch: 1
- daveid.co.uk: 1
- ucsbalum.com: 1
- openmailbox.org: 1
- tiger-222.fr: 1
- atlow.co.il: 1
- epam.com: 1
- neil.pro: 1
- browserstack.com: 1
- strite.org: 1
- trident-qa.com: 1
- nekofever.com: 1
- lidalia.org.uk: 1
- sema.in: 1
- ossaaaan.com: 1
- compton.nu: 1
- hotmail.co.uk: 1
- git-pull.com: 1
- atlassian.com: 1
- relivinc.com: 1
- blogreen.org: 1
- sam.ninja: 1
- birdsbits.com: 1
- bastimeyer.de: 1
- polyconseil.fr: 1
- list.ru: 1
- gradcenter.cuny.edu: 1
- epo.org: 1
- i.softbank.jp: 1
- its.jnj.com: 1
- pivotal.io: 1
- mavenlink.com: 1
- indiegogo.com: 1
- aol.de: 1
- quamotion.mobi: 1
- spinjs.com: 1
- danvine.com: 1
- glasz.org: 1
- accolade.com: 1
- xceptance.de: 1
- appthwack.com: 1
- pasosdejesus.org: 1
- enca.cz: 1
- iiitvadodara.ac.in: 1
- vanemy.org: 1
- bootstraponline.com: 1
- skratchdot.com: 1
- 163.com: 1
- cybernet.co.jp: 1
- no-log.org: 1
- yahoo.co.uk: 1
- navhealth.com: 1
- hp.com: 1
- cihar.com: 1
- mac.com: 1
- bebop.co: 1
- 4gates.org: 1
- paveloom.dev: 1
- envato.com: 1
- soulgalore.com: 1
- cs.cmu.edu: 1
- goodadvice.pages.de: 1
- rachum.com: 1
- robbrackett.com: 1
- robrich.org: 1
- nets.eu: 1
Issue and Pull Request metadata
Last synced: 7 days ago
Total issues: 2,071
Total pull requests: 3,597
Average time to close issues: about 2 months
Average time to close pull requests: 24 days
Total issue authors: 1,453
Total pull request authors: 268
Average comments per issue: 5.51
Average comments per pull request: 3.1
Merged pull request: 2,354
Bot issues: 3
Bot pull requests: 474
Past year issues: 328
Past year pull requests: 1,095
Past year average time to close issues: 12 days
Past year average time to close pull requests: 7 days
Past year issue authors: 246
Past year pull request authors: 91
Past year average comments per issue: 3.19
Past year average comments per pull request: 2.85
Past year merged pull request: 625
Past year bot issues: 0
Past year bot pull requests: 52
Top Issue Authors
- titusfortner (96)
- nvborisenko (59)
- bonigarcia (30)
- joerg1985 (28)
- cgoldberg (26)
- RenderMichael (16)
- MJB222398 (14)
- pujagani (10)
- whimboo (9)
- alaahong (8)
- MatzFan (8)
- bhecquet (8)
- jjqi92 (8)
- mykola-mokhnach (8)
- kool79 (7)
Top Pull Request Authors
- renovate[bot] (322)
- nvborisenko (295)
- RenderMichael (294)
- selenium-ci (262)
- cgoldberg (190)
- pujagani (183)
- dependabot[bot] (152)
- titusfortner (146)
- navin772 (125)
- VietND96 (124)
- shs96c (110)
- iampopovich (101)
- aguspe (100)
- Delta456 (96)
- bonigarcia (95)
Top Issue Labels
- I-defect (1,372)
- needs-triaging (765)
- I-enhancement (394)
- R-awaiting answer (207)
- I-question (192)
- A-needs-triaging (187)
- C-java (168)
- C-py (166)
- C-dotnet (158)
- G-chromedriver (136)
- I-issue-template (113)
- C-rust (88)
- C-grid (80)
- help wanted (73)
- C-nodejs (68)
- D-chrome (61)
- I-stale (61)
- C-rb (56)
- OS-windows (50)
- C-devtools (36)
- I-regression (31)
- OS-linux (28)
- I-logging (28)
- A-needs decision (24)
- J-awaiting answer (19)
- G-geckodriver (19)
- D-firefox (19)
- B-grid (18)
- OS-mac (16)
- J-stale (15)
Top Pull Request Labels
- Review effort [1-5]: 2 (659)
- enhancement (481)
- Review effort 2/5 (438)
- C-py (415)
- dependencies (397)
- Review effort 1/5 (306)
- C-java (255)
- Review effort [1-5]: 1 (242)
- Review effort [1-5]: 3 (231)
- B-build (197)
- C-nodejs (187)
- C-dotnet (167)
- C-rust (155)
- tests (152)
- Bug fix (139)
- C-build (115)
- C-rb (112)
- B-devtools (88)
- Review effort 3/5 (85)
- Review effort [1-5]: 4 (60)
- B-grid (46)
- B-support (46)
- C-grid (45)
- configuration changes (44)
- C-devtools (42)
- B-docs (31)
- bug_fix (30)
- B-manager (27)
- J-stale (24)
- P-enhancement (23)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 667,263,263 total
- nuget: 275,923,140 total
- npm: 7,593,408 last-month
- pypi: 51,258,617 last-month
- Total docker downloads: 2,744,603,433
- Total dependent packages: 9,353 (may contain duplicates)
- Total dependent repositories: 1,146,401 (may contain duplicates)
- Total versions: 3,659
- Total maintainers: 27
- Total advisories: 1
gem.coop: selenium-webdriver
Selenium implements the W3C WebDriver protocol to automate popular browsers. It aims to mimic the behaviour of a real user as it interacts with the application's HTML. It's primarily intended for web application testing, but any web-based task can automated.
- Homepage: https://selenium.dev
- Documentation: http://www.rubydoc.info/gems/selenium-webdriver/
- Licenses: Apache-2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T03:04:25.163Z (8 days ago)
- Versions: 254
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 325,769,823 Total
- Docker Downloads: 924,576,573
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.043%
- Downloads: 0.073%
- Docker downloads count: 0.101%
- Maintainers (4)
-
Funding:
- https://github.com/sponsors/SeleniumHQ
rubygems.org: selenium-webdriver
Selenium implements the W3C WebDriver protocol to automate popular browsers. It aims to mimic the behaviour of a real user as it interacts with the application's HTML. It's primarily intended for web application testing, but any web-based task can automated.
- Homepage: https://selenium.dev
- Documentation: http://www.rubydoc.info/gems/selenium-webdriver/
- Licenses: Apache-2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-23T19:00:52.913Z (8 days ago)
- Versions: 254
- Dependent Packages: 1,044
- Dependent Repositories: 311,814
- Downloads: 325,704,515 Total
- Docker Downloads: 924,576,573
-
Rankings:
- Stargazers count: 0.028%
- Forks count: 0.034%
- Dependent packages count: 0.048%
- Average: 0.074%
- Downloads: 0.078%
- Dependent repos count: 0.081%
- Docker downloads count: 0.173%
- Maintainers (6)
-
Funding:
- https://github.com/sponsors/SeleniumHQ
pypi.org: selenium
Official Python bindings for Selenium WebDriver
- Homepage: https://www.selenium.dev
- Documentation: https://selenium.readthedocs.io/
- Licenses: Apache-2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T14:30:45.120Z (7 days ago)
- Versions: 226
- Dependent Packages: 1,518
- Dependent Repositories: 62,210
- Downloads: 51,258,586 Last month
- Docker Downloads: 221,118,560
-
Rankings:
- Dependent packages count: 0.017%
- Dependent repos count: 0.023%
- Downloads: 0.071%
- Forks count: 0.111%
- Average: 0.12%
- Stargazers count: 0.163%
- Docker downloads count: 0.333%
- Maintainers (10)
npmjs.org: selenium-webdriver
The official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme
- Licenses: Apache-2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T00:02:25.537Z (8 days ago)
- Versions: 116
- Dependent Packages: 2,258
- Dependent Repositories: 622,782
- Downloads: 7,593,298 Last month
- Docker Downloads: 619,046,423
-
Rankings:
- Dependent packages count: 0.035%
- Dependent repos count: 0.046%
- Docker downloads count: 0.09%
- Downloads: 0.099%
- Average: 0.202%
- Forks count: 0.405%
- Stargazers count: 0.539%
- Maintainers (6)
-
Funding:
- type: github: url: https://github.com/sponsors/SeleniumHQ
- type: opencollective: url: https://opencollective.com/selenium
gem.coop: selenium-devtools
Selenium WebDriver now supports limited DevTools interactions. This project allows users to specify desired versioning.
- Homepage: https://selenium.dev
- Documentation: http://www.rubydoc.info/gems/selenium-devtools/
- Licenses: Apache-2.0
- Latest release: 0.143.0 (published 3 months ago)
- Last Synced: 2026-02-23T23:02:49.739Z (8 days ago)
- Versions: 59
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,891,672 Total
- Docker Downloads: 8,201,063
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.488%
- Downloads: 1.465%
- Maintainers (3)
-
Funding:
- https://github.com/sponsors/SeleniumHQ
repo1.maven.org: org.seleniumhq.selenium:selenium-opera-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-opera-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.4.0 (published over 3 years ago)
- Last Synced: 2026-02-24T16:31:22.416Z (7 days ago)
- Versions: 54
- Dependent Packages: 95
- Dependent Repositories: 528
-
Rankings:
- Dependent repos count: 0.591%
- Average: 0.761%
- Dependent packages count: 0.774%
- Stargazers count: 0.82%
- Forks count: 0.858%
repo1.maven.org: org.seleniumhq.selenium:selenium-java
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-java/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T14:02:29.112Z (7 days ago)
- Versions: 177
- Dependent Packages: 1,796
- Dependent Repositories: 98,124
- Docker Downloads: 35,695,475
-
Rankings:
- Dependent repos count: 0.01%
- Dependent packages count: 0.04%
- Average: 0.77%
- Stargazers count: 0.817%
- Forks count: 0.856%
- Docker downloads count: 2.127%
repo1.maven.org: org.seleniumhq.selenium:selenium-chrome-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-chrome-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T01:32:03.812Z (8 days ago)
- Versions: 187
- Dependent Packages: 396
- Dependent Repositories: 13,871
- Docker Downloads: 529,763
-
Rankings:
- Dependent repos count: 0.062%
- Dependent packages count: 0.205%
- Average: 0.815%
- Stargazers count: 0.82%
- Forks count: 0.858%
- Docker downloads count: 2.13%
repo1.maven.org: org.seleniumhq.selenium:selenium-firefox-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-firefox-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T07:44:23.791Z (8 days ago)
- Versions: 187
- Dependent Packages: 348
- Dependent Repositories: 10,500
- Docker Downloads: 528,790
-
Rankings:
- Dependent repos count: 0.078%
- Dependent packages count: 0.228%
- Stargazers count: 0.82%
- Average: 0.823%
- Forks count: 0.858%
- Docker downloads count: 2.13%
repo1.maven.org: org.seleniumhq.selenium:selenium-support
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-support/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T00:01:22.043Z (8 days ago)
- Versions: 187
- Dependent Packages: 366
- Dependent Repositories: 8,655
- Docker Downloads: 529,551
-
Rankings:
- Dependent repos count: 0.09%
- Dependent packages count: 0.219%
- Stargazers count: 0.82%
- Average: 0.823%
- Forks count: 0.858%
- Docker downloads count: 2.13%
repo1.maven.org: org.seleniumhq.selenium:selenium-ie-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-ie-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T01:31:50.981Z (8 days ago)
- Versions: 187
- Dependent Packages: 175
- Dependent Repositories: 3,489
- Docker Downloads: 528,318
-
Rankings:
- Dependent repos count: 0.169%
- Dependent packages count: 0.444%
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 0.884%
- Docker downloads count: 2.131%
repo1.maven.org: org.seleniumhq.selenium:selenium-safari-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-safari-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-24T21:31:13.545Z (7 days ago)
- Versions: 153
- Dependent Packages: 128
- Dependent Repositories: 2,339
- Docker Downloads: 527,654
-
Rankings:
- Dependent repos count: 0.221%
- Dependent packages count: 0.588%
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 0.924%
- Docker downloads count: 2.131%
repo1.maven.org: org.seleniumhq.selenium:selenium-server
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: http://www.seleniumhq.org/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-server/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 3.141.59 (published over 7 years ago)
- Last Synced: 2026-02-24T00:01:16.861Z (8 days ago)
- Versions: 109
- Dependent Packages: 276
- Dependent Repositories: 10,765
- Docker Downloads: 4,893
-
Rankings:
- Dependent repos count: 0.076%
- Dependent packages count: 0.294%
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 1.234%
- Docker downloads count: 4.121%
- Advisories:
nuget.org: corecompat.selenium.webdriver
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the newer, more concise and object-based Selenium WebDriver API, which uses native OS-level events to manipulate the browser, bypassing the JavaScript sandbox, and does not require the Selenium Server to automate the browser.
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: apache-2.0
- Latest release: (published 8 days ago)
- Last Synced: 2026-02-23T20:03:23.837Z (8 days ago)
- Versions: 7
- Dependent Packages: 6
- Dependent Repositories: 7
-
Rankings:
- Forks count: 0.021%
- Stargazers count: 0.029%
- Average: 1.28%
- Dependent packages count: 2.389%
- Dependent repos count: 2.679%
repo1.maven.org: org.seleniumhq.selenium:selenium-leg-rc
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-leg-rc/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.5.0 (published over 3 years ago)
- Last Synced: 2026-02-24T18:31:23.995Z (7 days ago)
- Versions: 64
- Dependent Packages: 19
- Dependent Repositories: 134
- Docker Downloads: 527,483
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Dependent repos count: 1.569%
- Average: 1.748%
- Docker downloads count: 2.131%
- Dependent packages count: 3.367%
rubygems.org: selenium-devtools
Selenium WebDriver now supports limited DevTools interactions. This project allows users to specify desired versioning.
- Homepage: https://selenium.dev
- Documentation: http://www.rubydoc.info/gems/selenium-devtools/
- Licenses: Apache-2.0
- Latest release: 0.143.0 (published 3 months ago)
- Last Synced: 2026-02-24T21:01:16.536Z (7 days ago)
- Versions: 59
- Dependent Packages: 5
- Dependent Repositories: 78
- Downloads: 7,897,253 Total
- Docker Downloads: 8,201,063
-
Rankings:
- Stargazers count: 0.031%
- Forks count: 0.035%
- Average: 1.872%
- Docker downloads count: 2.067%
- Downloads: 2.733%
- Dependent repos count: 3.063%
- Dependent packages count: 3.301%
- Maintainers (3)
-
Funding:
- https://github.com/sponsors/SeleniumHQ
repo1.maven.org: org.seleniumhq.selenium:selenium-http
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-http/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:02:03.333Z (9 days ago)
- Versions: 76
- Dependent Packages: 26
- Dependent Repositories: 34
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 2.027%
- Dependent packages count: 2.514%
- Dependent repos count: 3.916%
conda-forge.org: selenium
- Homepage: https://www.selenium.dev/
- Licenses: Apache-2.0
- Latest release: 4.6.0 (published over 3 years ago)
- Last Synced: 2026-02-03T01:55:58.006Z (29 days ago)
- Versions: 28
- Dependent Packages: 18
- Dependent Repositories: 141
-
Rankings:
- Forks count: 1.133%
- Stargazers count: 1.332%
- Average: 2.233%
- Dependent repos count: 2.929%
- Dependent packages count: 3.538%
repo1.maven.org: org.seleniumhq.selenium:lift
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/lift/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.14.0 (published over 2 years ago)
- Last Synced: 2026-02-22T21:01:56.253Z (9 days ago)
- Versions: 64
- Dependent Packages: 10
- Dependent Repositories: 81
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Dependent repos count: 2.232%
- Average: 2.502%
- Dependent packages count: 6.099%
repo1.maven.org: org.seleniumhq.selenium:selenium-json
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-json/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:01:56.436Z (9 days ago)
- Versions: 76
- Dependent Packages: 46
- Dependent Repositories: 10
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Dependent packages count: 1.484%
- Average: 2.744%
- Dependent repos count: 7.812%
repo1.maven.org: org.seleniumhq.selenium:selenium-chromium-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-chromium-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:02:02.789Z (9 days ago)
- Versions: 77
- Dependent Packages: 12
- Dependent Repositories: 29
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 2.798%
- Dependent repos count: 4.346%
- Dependent packages count: 5.17%
repo1.maven.org: org.seleniumhq.selenium:jetty-repacked
Browser automation framework dependency on jetty
- Homepage: http://selenium.googlecode.com/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/jetty-repacked/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 7.6.1 (published about 14 years ago)
- Last Synced: 2026-02-22T21:01:55.069Z (9 days ago)
- Versions: 11
- Dependent Packages: 9
- Dependent Repositories: 74
- Docker Downloads: 9,385
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Dependent repos count: 2.38%
- Average: 2.829%
- Docker downloads count: 3.382%
- Dependent packages count: 6.708%
repo1.maven.org: org.seleniumhq.selenium:selenium-manager
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-manager/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:01:56.829Z (9 days ago)
- Versions: 49
- Dependent Packages: 8
- Dependent Repositories: 40
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 3.169%
- Dependent repos count: 3.532%
- Dependent packages count: 7.469%
repo1.maven.org: org.seleniumhq.selenium:selenium-http-jdk-client
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-http-jdk-client/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.13.0 (published over 2 years ago)
- Last Synced: 2026-02-22T21:01:52.024Z (9 days ago)
- Versions: 19
- Dependent Packages: 10
- Dependent Repositories: 385
- Docker Downloads: 14
-
Rankings:
- Dependent repos count: 0.733%
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 3.183%
- Dependent packages count: 6.099%
- Docker downloads count: 7.409%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v102
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v102/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.4.0 (published over 3 years ago)
- Last Synced: 2026-02-22T21:01:58.228Z (9 days ago)
- Versions: 5
- Dependent Packages: 10
- Dependent Repositories: 23
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 3.191%
- Dependent repos count: 4.982%
- Dependent packages count: 6.099%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v104
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v104/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.5.3 (published over 3 years ago)
- Last Synced: 2026-02-22T21:01:57.183Z (9 days ago)
- Versions: 5
- Dependent Packages: 8
- Dependent Repositories: 15
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 3.859%
- Dependent repos count: 6.296%
- Dependent packages count: 7.469%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v85
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v85/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.29.0 (published about 1 year ago)
- Last Synced: 2026-02-22T21:02:01.820Z (9 days ago)
- Versions: 59
- Dependent Packages: 10
- Dependent Repositories: 6
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 4.452%
- Dependent packages count: 6.099%
- Dependent repos count: 10.031%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v108
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v108/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.8.1 (published about 3 years ago)
- Last Synced: 2026-02-22T21:01:54.909Z (9 days ago)
- Versions: 5
- Dependent Packages: 6
- Dependent Repositories: 14
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 4.487%
- Dependent repos count: 6.564%
- Dependent packages count: 9.712%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v101
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v101/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.3.0 (published over 3 years ago)
- Last Synced: 2026-02-22T21:01:57.890Z (9 days ago)
- Versions: 5
- Dependent Packages: 5
- Dependent Repositories: 6
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 5.799%
- Dependent repos count: 10.031%
- Dependent packages count: 11.485%
repo1.maven.org: org.webjars.npm:selenium-webdriver
WebJar for selenium-webdriver
- Homepage: https://www.webjars.org
- Documentation: https://appdoc.app/artifact/org.webjars.npm/selenium-webdriver/
- Licenses: Apache-2.0
- Latest release: 4.10.0 (published over 2 years ago)
- Last Synced: 2026-02-22T21:01:54.233Z (9 days ago)
- Versions: 6
- Dependent Packages: 3
- Dependent Repositories: 28
-
Rankings:
- Stargazers count: 0.829%
- Forks count: 0.858%
- Dependent repos count: 4.433%
- Average: 5.922%
- Dependent packages count: 17.567%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v106
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v106/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.7.2 (published about 3 years ago)
- Last Synced: 2026-02-22T21:01:58.225Z (9 days ago)
- Versions: 8
- Dependent Packages: 6
- Dependent Repositories: 3
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 6.291%
- Dependent packages count: 9.712%
- Dependent repos count: 13.781%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v96
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v96/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.2 (published about 4 years ago)
- Last Synced: 2026-02-22T21:01:55.287Z (9 days ago)
- Versions: 3
- Dependent Packages: 7
- Dependent Repositories: 2
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 6.55%
- Dependent packages count: 8.401%
- Dependent repos count: 16.116%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v95
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v95/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.2 (published about 4 years ago)
- Last Synced: 2026-02-22T21:02:20.698Z (9 days ago)
- Versions: 5
- Dependent Packages: 13
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Dependent packages count: 4.808%
- Average: 6.816%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v109
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v109/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.8.3 (published almost 3 years ago)
- Last Synced: 2026-02-22T21:01:56.221Z (9 days ago)
- Versions: 4
- Dependent Packages: 4
- Dependent Repositories: 4
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 6.931%
- Dependent repos count: 12.125%
- Dependent packages count: 13.926%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v105
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v105/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.6.0 (published over 3 years ago)
- Last Synced: 2026-02-22T21:01:57.913Z (9 days ago)
- Versions: 5
- Dependent Packages: 4
- Dependent Repositories: 3
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 7.345%
- Dependent repos count: 13.781%
- Dependent packages count: 13.926%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v94
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v94/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.1 (published about 4 years ago)
- Last Synced: 2026-02-22T21:02:03.213Z (9 days ago)
- Versions: 5
- Dependent Packages: 4
- Dependent Repositories: 3
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 7.347%
- Dependent repos count: 13.781%
- Dependent packages count: 13.926%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v91
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v91/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-beta-4 (published over 4 years ago)
- Last Synced: 2026-02-22T21:01:51.890Z (9 days ago)
- Versions: 2
- Dependent Packages: 3
- Dependent Repositories: 4
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 7.843%
- Dependent repos count: 12.125%
- Dependent packages count: 17.567%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v107
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v107/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.8.0 (published about 3 years ago)
- Last Synced: 2026-02-22T21:02:16.216Z (9 days ago)
- Versions: 5
- Dependent Packages: 2
- Dependent Repositories: 6
- Docker Downloads: 926
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Docker downloads count: 4.502%
- Average: 7.873%
- Dependent repos count: 10.031%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v100
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v100/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.2.2 (published over 3 years ago)
- Last Synced: 2026-02-22T21:02:01.780Z (9 days ago)
- Versions: 4
- Dependent Packages: 6
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 8.042%
- Dependent packages count: 9.712%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v99
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v99/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.4 (published almost 4 years ago)
- Last Synced: 2026-02-22T21:01:58.262Z (9 days ago)
- Versions: 2
- Dependent Packages: 6
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 8.042%
- Dependent packages count: 9.712%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v88
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v88/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-beta-4 (published over 4 years ago)
- Last Synced: 2026-02-22T21:01:56.893Z (9 days ago)
- Versions: 4
- Dependent Packages: 2
- Dependent Repositories: 10
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Dependent repos count: 7.812%
- Average: 8.162%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:selenium-firefox-xpi-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-firefox-xpi-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.2 (published about 4 years ago)
- Last Synced: 2026-02-22T21:01:58.905Z (9 days ago)
- Versions: 18
- Dependent Packages: 3
- Dependent Repositories: 2
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 8.84%
- Dependent repos count: 16.116%
- Dependent packages count: 17.567%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v97
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v97/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.3 (published almost 4 years ago)
- Last Synced: 2026-02-22T21:01:53.973Z (9 days ago)
- Versions: 2
- Dependent Packages: 2
- Dependent Repositories: 5
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 8.94%
- Dependent repos count: 10.919%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:selenium-session-map-redis
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-session-map-redis/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:02:03.920Z (9 days ago)
- Versions: 74
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 9.095%
- Dependent packages count: 13.926%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-session-map-jdbc
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-session-map-jdbc/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:01:56.438Z (9 days ago)
- Versions: 72
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 9.095%
- Dependent packages count: 13.926%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-edgehtml-driver
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-edgehtml-driver/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-alpha-7 (published over 5 years ago)
- Last Synced: 2026-02-22T21:02:21.005Z (9 days ago)
- Versions: 6
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 9.096%
- Dependent packages count: 13.926%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v86
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v86/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-beta-2 (published almost 5 years ago)
- Last Synced: 2026-02-22T21:01:52.307Z (9 days ago)
- Versions: 3
- Dependent Packages: 2
- Dependent Repositories: 3
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 9.655%
- Dependent repos count: 13.781%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:grid
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: http://www.seleniumhq.org/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/grid/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-alpha-2 (published over 6 years ago)
- Last Synced: 2026-02-22T21:01:57.714Z (9 days ago)
- Versions: 2
- Dependent Packages: 2
- Dependent Repositories: 3
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 9.655%
- Dependent repos count: 13.781%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v103
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v103/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.4.0 (published over 3 years ago)
- Last Synced: 2026-02-22T21:01:54.358Z (9 days ago)
- Versions: 2
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.817%
- Forks count: 0.856%
- Average: 10.004%
- Dependent packages count: 17.567%
- Dependent repos count: 20.775%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v93
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v93/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0 (published over 4 years ago)
- Last Synced: 2026-02-22T21:01:50.623Z (9 days ago)
- Versions: 4
- Dependent Packages: 2
- Dependent Repositories: 1
- Docker Downloads: 926
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Docker downloads count: 4.502%
- Average: 10.023%
- Dependent repos count: 20.775%
- Dependent packages count: 23.158%
nuget.org: selenium.rc
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the older, more procedural Selenium Remote Control (or Selenium RC) API. It requires a running instance of the Selenium Server, and uses JavaScript for automating the browser, which means it is limited to the functionality available from within the JavaScript sandbox. Note that version 3.1 will be the final version of this assembly available. Users can use WebDriverBackedSelenium, or migrate to WebDriver.
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: apache-2.0
- Latest release: 3.1.0 (published about 9 years ago)
- Last Synced: 2026-02-22T21:02:05.743Z (9 days ago)
- Versions: 73
- Dependent Packages: 5
- Dependent Repositories: 0
- Downloads: 2,467,090 Total
-
Rankings:
- Downloads: 0.887%
- Average: 11.18%
- Dependent repos count: 13.819%
- Dependent packages count: 18.835%
- Maintainers (1)
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v89
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v89/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-beta-4 (published over 4 years ago)
- Last Synced: 2026-02-22T21:02:20.814Z (9 days ago)
- Versions: 4
- Dependent Packages: 2
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Average: 11.403%
- Dependent repos count: 20.775%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v98
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v98/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.1.3 (published almost 4 years ago)
- Last Synced: 2026-02-22T21:02:20.984Z (9 days ago)
- Versions: 1
- Dependent Packages: 2
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 11.404%
- Dependent repos count: 20.775%
- Dependent packages count: 23.158%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v90
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v90/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-beta-4 (published over 4 years ago)
- Last Synced: 2026-02-22T21:01:49.926Z (9 days ago)
- Versions: 2
- Dependent Packages: 2
- Dependent Repositories: 1
-
Rankings:
- Stargazers count: 0.824%
- Forks count: 0.858%
- Average: 11.404%
- Dependent repos count: 20.775%
- Dependent packages count: 23.158%
nuget.org: selenium.webdriver
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the concise and object-based Selenium WebDriver API, which uses native OS-level events to manipulate the browser, bypassing the JavaScript sandbox, and does not require the Selenium Server to automate the browser.
- Homepage: https://selenium.dev/
- Licenses: Apache-2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:02:22.785Z (9 days ago)
- Versions: 165
- Dependent Packages: 393
- Dependent Repositories: 0
- Downloads: 160,930,237 Total
-
Rankings:
- Downloads: 0.098%
- Average: 11.805%
- Dependent repos count: 14.978%
- Dependent packages count: 20.338%
- Maintainers (1)
nuget.org: selenium.support
Selenium is a set of different software tools each with a different approach to supporting browser automation. These tools are highly flexible, allowing many options for locating and manipulating elements within a browser, and one of its key features is the support for automating multiple browser platforms. This package contains the .NET bindings for the concise and object-based Selenium WebDriver API, which uses native OS-level events to manipulate the browser, bypassing the JavaScript sandbox, and does not require the Selenium Server to automate the browser.
- Homepage: https://selenium.dev/
- Licenses: Apache-2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:02:16.243Z (9 days ago)
- Versions: 165
- Dependent Packages: 248
- Dependent Repositories: 0
- Downloads: 112,525,813 Total
-
Rankings:
- Downloads: 0.119%
- Average: 11.811%
- Dependent repos count: 14.978%
- Dependent packages count: 20.338%
- Maintainers (1)
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v87
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v87/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-beta-2 (published almost 5 years ago)
- Last Synced: 2026-02-22T21:01:55.397Z (9 days ago)
- Versions: 3
- Dependent Packages: 2
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.709%
- Forks count: 0.721%
- Average: 13.943%
- Dependent packages count: 22.361%
- Dependent repos count: 31.98%
npmjs.org: @sriharsha/test-selenium-bin
The official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme
- Status: removed
- Licenses: Apache-2.0
- Latest release: 0.0.5 (published over 3 years ago)
- Last Synced: 2026-02-22T21:01:59.804Z (9 days ago)
- Versions: 4
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 5 Last month
-
Rankings:
- Forks count: 0.556%
- Stargazers count: 0.746%
- Average: 13.989%
- Dependent packages count: 16.22%
- Dependent repos count: 25.306%
- Downloads: 27.117%
- Maintainers (1)
pypi.org: selenium-duration-50ms
Python bindings for Selenium
- Homepage: https://github.com/SeleniumHQ/selenium/
- Documentation: https://selenium-duration-50ms.readthedocs.io/
- Licenses: Apache 2.0
- Latest release: 4.0.0b3 (published almost 5 years ago)
- Last Synced: 2026-02-22T21:01:51.827Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 5 Last month
-
Rankings:
- Forks count: 0.057%
- Stargazers count: 0.072%
- Dependent packages count: 10.141%
- Average: 14.513%
- Dependent repos count: 21.526%
- Downloads: 40.767%
- Maintainers (1)
repo1.maven.org: org.seleniumhq.selenium:selenium-parent
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: http://www.seleniumhq.org/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-parent/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 2.53.1 (published over 9 years ago)
- Last Synced: 2026-02-22T21:02:22.421Z (9 days ago)
- Versions: 78
- Dependent Packages: 0
- Dependent Repositories: 13
-
Rankings:
- Stargazers count: 0.82%
- Forks count: 0.858%
- Dependent repos count: 6.804%
- Average: 14.658%
- Dependent packages count: 50.151%
npmjs.org: selenium-webdriver-sway-fork
Sway's temporary fork of the official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: Apache-2.0
- Latest release: 4.0.0-aleph.3 (published over 7 years ago)
- Last Synced: 2026-02-22T21:01:51.394Z (9 days ago)
- Versions: 3
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 31 Last month
-
Rankings:
- Forks count: 0.405%
- Stargazers count: 0.539%
- Dependent repos count: 10.296%
- Average: 14.662%
- Dependent packages count: 20.908%
- Downloads: 41.163%
- Maintainers (1)
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v84
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v84/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.0.0-alpha-7 (published over 5 years ago)
- Last Synced: 2026-02-22T21:01:53.399Z (9 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.709%
- Forks count: 0.721%
- Average: 16.352%
- Dependent repos count: 31.98%
- Dependent packages count: 31.998%
npmjs.org: rdok-selenium-webdriver
The official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: Apache-2.0
- Latest release: 3.4.0 (published almost 9 years ago)
- Last Synced: 2026-02-22T21:02:22.958Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 35 Last month
-
Rankings:
- Forks count: 0.405%
- Stargazers count: 0.539%
- Dependent repos count: 10.296%
- Average: 17.109%
- Downloads: 22.47%
- Dependent packages count: 51.837%
- Maintainers (1)
npmjs.org: @jovanross/selenium-webdriver3
The official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: Apache-2.0
- Latest release: 3.6.0 (published over 7 years ago)
- Last Synced: 2026-02-22T21:02:03.323Z (9 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 22 Last month
-
Rankings:
- Forks count: 0.405%
- Stargazers count: 0.539%
- Dependent repos count: 10.296%
- Average: 17.41%
- Dependent packages count: 20.908%
- Downloads: 54.903%
- Maintainers (1)
npmjs.org: @jovanross/selenium-webdriver2
The official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: Apache-2.0
- Latest release: 2.53.3 (published over 7 years ago)
- Last Synced: 2026-02-22T21:01:52.387Z (9 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 5 Last month
-
Rankings:
- Forks count: 0.405%
- Stargazers count: 0.539%
- Dependent repos count: 10.296%
- Average: 17.41%
- Dependent packages count: 20.908%
- Downloads: 54.903%
- Maintainers (1)
anaconda.org: selenium
Selenium specifically provides an infrastructure for the W3C WebDriver specification — a platform and language-neutral coding interface compatible with all major web browsers.
- Homepage: https://www.seleniumhq.org
- Licenses: Apache-2.0
- Latest release: 4.38.0 (published 4 months ago)
- Last Synced: 2026-02-03T01:55:26.458Z (29 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 141
-
Rankings:
- Stargazers count: 3.2%
- Forks count: 3.2%
- Dependent repos count: 16.546%
- Average: 18.535%
- Dependent packages count: 51.193%
npmjs.org: selenium-webdriver-fixed
The official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme
- Licenses: Apache-2.0
- Latest release: 4.0.0-beta.4 (published over 4 years ago)
- Last Synced: 2026-02-22T21:01:55.693Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5 Last month
-
Rankings:
- Forks count: 0.543%
- Stargazers count: 0.724%
- Average: 19.348%
- Dependent repos count: 25.328%
- Dependent packages count: 32.894%
- Downloads: 37.249%
- Maintainers (1)
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v141
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v141/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.39.0 (published 3 months ago)
- Last Synced: 2026-02-22T21:01:57.468Z (9 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.799%
- Stargazers count: 0.801%
- Average: 19.58%
- Dependent repos count: 31.577%
- Dependent packages count: 45.144%
repo1.maven.org: org.seleniumhq.selenium:jetty-servlet-repacked
Browser automation framework dependency on jetty
- Homepage: http://selenium.googlecode.com/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/jetty-servlet-repacked/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 9.2.13.v20150730 (published over 10 years ago)
- Last Synced: 2026-02-22T21:02:02.756Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.709%
- Forks count: 0.721%
- Average: 20.568%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
repo1.maven.org: org.seleniumhq.selenium:jetty-servlets-repacked
Browser automation framework dependency on jetty
- Homepage: http://selenium.googlecode.com/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/jetty-servlets-repacked/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 9.2.13.v20150730 (published over 10 years ago)
- Last Synced: 2026-02-22T21:02:02.785Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.709%
- Forks count: 0.721%
- Average: 20.568%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
repo1.maven.org: org.seleniumhq.selenium:jetty-security-repacked
Browser automation framework dependency on jetty
- Homepage: http://selenium.googlecode.com/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/jetty-security-repacked/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 9.2.13.v20150730 (published over 10 years ago)
- Last Synced: 2026-02-22T21:02:15.048Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.709%
- Forks count: 0.721%
- Average: 20.568%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
repo1.maven.org: org.seleniumhq.selenium:jetty-server-repacked
Browser automation framework dependency on jetty
- Homepage: http://selenium.googlecode.com/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/jetty-server-repacked/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 9.2.13.v20150730 (published over 10 years ago)
- Last Synced: 2026-02-22T21:01:51.292Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.709%
- Forks count: 0.721%
- Average: 20.568%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v129
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v129/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.27.0 (published over 1 year ago)
- Last Synced: 2026-02-22T21:01:53.615Z (9 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.782%
- Forks count: 0.81%
- Average: 21.066%
- Dependent repos count: 34.027%
- Dependent packages count: 48.646%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v128
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v128/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.26.0 (published over 1 year ago)
- Last Synced: 2026-02-22T21:01:59.437Z (9 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.782%
- Forks count: 0.81%
- Average: 21.066%
- Dependent repos count: 34.027%
- Dependent packages count: 48.646%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v127
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v127/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.25.0 (published over 1 year ago)
- Last Synced: 2026-02-22T21:01:53.566Z (9 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.782%
- Forks count: 0.81%
- Average: 21.066%
- Dependent repos count: 34.027%
- Dependent packages count: 48.646%
repo1.maven.org: org.seleniumhq.selenium:selenium-dependencies-bom
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-dependencies-bom/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:02:04.180Z (9 days ago)
- Versions: 44
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.782%
- Forks count: 0.81%
- Average: 21.066%
- Dependent repos count: 34.027%
- Dependent packages count: 48.646%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v135
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v135/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.33.0 (published 9 months ago)
- Last Synced: 2026-02-22T21:01:57.247Z (9 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.779%
- Forks count: 0.808%
- Average: 21.118%
- Dependent repos count: 34.114%
- Dependent packages count: 48.77%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v111
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v111/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.9.1 (published almost 3 years ago)
- Last Synced: 2026-02-22T21:01:57.652Z (9 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.759%
- Forks count: 0.806%
- Average: 21.666%
- Dependent repos count: 35.023%
- Dependent packages count: 50.077%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v110
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v110/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.9.0 (published almost 3 years ago)
- Last Synced: 2026-02-22T21:01:56.849Z (9 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.759%
- Forks count: 0.806%
- Average: 21.666%
- Dependent repos count: 35.023%
- Dependent packages count: 50.077%
npmjs.org: selenium-webdriver-patched
The patched official WebDriver JavaScript bindings from the Selenium project
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses: Apache-2.0
- Latest release: 3.4.1 (published over 8 years ago)
- Last Synced: 2026-02-22T21:02:23.846Z (9 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 7 Last month
-
Rankings:
- Forks count: 0.405%
- Stargazers count: 0.539%
- Dependent repos count: 10.296%
- Average: 23.596%
- Dependent packages count: 51.837%
- Downloads: 54.903%
- Maintainers (1)
pypi.org: jyl-selenium
jyl Python bindings for Selenium
- Homepage: https://github.com/SeleniumHQ/selenium/
- Documentation: https://www.selenium.dev/documentation/overview/
- Licenses: Apache 2.0
- Latest release: 4.8.1 (published over 1 year ago)
- Last Synced: 2026-02-22T21:02:17.005Z (9 days ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26 Last month
-
Rankings:
- Dependent packages count: 10.73%
- Average: 35.579%
- Dependent repos count: 60.429%
- Maintainers (1)
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v143
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v143/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:01:48.892Z (9 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 30.97%
- Average: 37.623%
- Dependent packages count: 44.277%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v116
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v116/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.14.1 (published over 2 years ago)
- Last Synced: 2026-02-22T21:01:56.877Z (9 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 35.313%
- Average: 42.713%
- Dependent packages count: 50.113%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v115
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v115/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.13.0 (published over 2 years ago)
- Last Synced: 2026-02-22T21:01:55.413Z (9 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 35.313%
- Average: 42.713%
- Dependent packages count: 50.113%
repo1.maven.org: org.seleniumhq.selenium:selenium-devtools-v117
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-devtools-v117/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.15.0 (published over 2 years ago)
- Last Synced: 2026-02-22T21:01:52.751Z (9 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 35.313%
- Average: 42.713%
- Dependent packages count: 50.113%
repo1.maven.org: org.seleniumhq.selenium:selenium-bom
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
- Homepage: https://selenium.dev/
- Documentation: https://appdoc.app/artifact/org.seleniumhq.selenium/selenium-bom/
- Licenses: The Apache Software License, Version 2.0
- Latest release: 4.41.0 (published 12 days ago)
- Last Synced: 2026-02-22T21:01:56.845Z (9 days ago)
- Versions: 44
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 35.172%
- Average: 42.729%
- Dependent packages count: 50.286%
nixpkgs-24.11: selenium-manager
Browser automation framework and ecosystem
- Homepage: https://github.com/SeleniumHQ/selenium
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-24.11/pkgs/by-name/se/selenium-manager/package.nix#L34
- Licenses: Apache-2.0
- Latest release: 4.25.0 (published about 1 month ago)
- Last Synced: 2026-02-03T18:24:30.958Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
debian-12: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Documentation: https://packages.debian.org/bookworm/ruby-selenium-webdriver
- Licenses:
- Latest release: 4.4.0-1 (published 19 days ago)
- Last Synced: 2026-02-12T23:41:34.625Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
debian-13: python-selenium
- Homepage: https://github.com/SeleniumHQ/selenium/
- Documentation: https://packages.debian.org/trixie/python-selenium
- Licenses:
- Latest release: 4.24.4+dfsg-1 (published 19 days ago)
- Last Synced: 2026-02-13T12:51:03.720Z (18 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-22.04: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses:
- Latest release: 3.142.7+dfsg-2 (published 18 days ago)
- Last Synced: 2026-02-13T13:25:50.631Z (18 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses:
- Latest release: 4.4.0-1 (published 19 days ago)
- Last Synced: 2026-02-13T01:03:09.014Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
nixpkgs-24.05: selenium-manager
A browser automation framework and ecosystem
- Homepage: https://github.com/SeleniumHQ/selenium
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-24.05/pkgs/by-name/se/selenium-manager/package.nix#L33
- Licenses: Apache-2.0
- Latest release: 4.18.1 (published 28 days ago)
- Last Synced: 2026-02-03T19:43:42.904Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
ubuntu-20.04: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses:
- Latest release: 3.142.7+dfsg-1 (published 19 days ago)
- Last Synced: 2026-02-13T07:22:47.999Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-10: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Documentation: https://packages.debian.org/buster/ruby-selenium-webdriver
- Licenses:
- Latest release: 3.141.0+dfsg-1 (published 20 days ago)
- Last Synced: 2026-02-13T04:25:52.178Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-11: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Documentation: https://packages.debian.org/bullseye/ruby-selenium-webdriver
- Licenses:
- Latest release: 3.142.7+dfsg-2 (published 21 days ago)
- Last Synced: 2026-02-13T08:24:42.862Z (19 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-23.04: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses:
- Latest release: 4.4.0-1 (published 21 days ago)
- Last Synced: 2026-02-11T06:49:46.572Z (21 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-23.10: ruby-selenium-webdriver
- Homepage: https://github.com/SeleniumHQ/selenium
- Licenses:
- Latest release: 4.4.0-1 (published 18 days ago)
- Last Synced: 2026-02-13T18:32:43.416Z (18 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
nixpkgs-unstable: selenium-manager
Browser automation framework and ecosystem
- Homepage: https://github.com/SeleniumHQ/selenium
- Documentation: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/by-name/se/selenium-manager/package.nix#L32
- Licenses: Apache-2.0
- Latest release: 4.29.0 (published about 1 month ago)
- Last Synced: 2026-02-03T22:32:03.307Z (28 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
Dependencies
- 1278 dependencies
- @babel/preset-react ^7.18.6 development
- @testing-library/jest-dom ^5.16.3 development
- @testing-library/react ^13.3.0 development
- @testing-library/user-event ^14.4.1 development
- react-scripts 5.0.1 development
- ts-standard ^11.0.0 development
- typescript ^4.7.4 development
- @apollo/client ^3.6.9
- @bazel/typescript ^5.5.3
- @emotion/react ^11.10.0
- @emotion/styled ^11.10.0
- @mui/icons-material ^5.8.4
- @mui/material ^5.9.3
- @novnc/novnc ^1.3.0
- @types/jest ^28.1.6
- @types/node ^18.6.3
- @types/react ^18.0.15
- @types/react-dom ^18.0.6
- @types/react-modal ^3.12.0
- @types/react-router-dom ^5.3.3
- graphql ^16.5.0
- graphql.macro ^1.4.2
- pretty-ms ^7.0.1
- react ^18.2.0
- react-dom ^18.2.0
- react-modal ^3.15.1
- react-router-dom ^6.3.0
- source-map-explorer ^2.5.2
- 250 dependencies
- eslint ^8.16.0 development
- eslint-config-prettier ^8.5.0 development
- eslint-plugin-no-only-tests ^2.6.0 development
- eslint-plugin-node ^11.1.0 development
- eslint-plugin-prettier ^4.0.0 development
- express ^4.17.1 development
- jasmine ^3.8.0 development
- mocha ^10.0.0 development
- multer ^1.4.5-lts.1 development
- prettier ^2.6.1 development
- serve-index ^1.9.1 development
- sinon ^10.0.0 development
- jszip ^3.10.0
- tmp ^0.2.1
- ws >=8.7.0
- 1373 dependencies
- @babel/preset-react ^7.18.6 development
- @bazel/jasmine ^5.5.3 development
- @bazel/typescript ^5.5.3 development
- @testing-library/jest-dom ^5.16.3 development
- @testing-library/react ^13.3.0 development
- @testing-library/user-event ^14.4.1 development
- @types/jest ^28.1.6 development
- @types/node ^18.6.1 development
- enzyme ^3.11.0 development
- enzyme-to-json ^3.6.1 development
- eslint ^7.23.0 development
- eslint-config-prettier ^7.0.0 development
- eslint-plugin-no-only-tests ^2.4.0 development
- eslint-plugin-node ^11.1.0 development
- eslint-plugin-prettier ^3.2.0 development
- express ^4.17.1 development
- identity-obj-proxy ^3.0.0 development
- jasmine 4.1.0 development
- mocha ^9.2.2 development
- multer ^1.4.5-lts.1 development
- prettier ^2.5.1 development
- react-scripts 5.0.1 development
- serve-index ^1.9.1 development
- sinon ^7.5.0 development
- ts-jest ^26.5.4 development
- typescript ^4.7.4 development
- xml2js ^0.4.23 development
- @apollo/client ^3.6.9
- @emotion/react ^11.10.0
- @emotion/styled ^11.10.0
- @mui/icons-material ^5.8.4
- @mui/material ^5.9.3
- @novnc/novnc ^1.3.0
- @types/react ^18.0.15
- @types/react-dom ^18.0.6
- @types/react-modal ^3.12.0
- @types/react-router-dom ^5.3.3
- graphql ^16.5.0
- graphql.macro ^1.4.2
- jszip ^3.7.1
- pretty-ms ^7.0.1
- react ^18.2.0
- react-dom ^18.2.0
- react-modal ^3.15.1
- react-router-dom ^6.3.0
- rimraf ^2.7.1
- source-map-explorer ^2.5.2
- tmp ^0.2.1
- ts-standard ^11.0.0
- ws ^8.4.0
- Microsoft.IdentityModel.Tokens 6.19.0
- Newtonsoft.Json 13.0.1
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- NUnit3TestAdapter 3.16.1 development
- BenderProxy 1.0.0
- Microsoft.IdentityModel.Tokens 6.19.0
- Microsoft.NET.Test.Sdk 16.6.1
- Moq 4.12.0
- NUnit 3.13.2
- Newtonsoft.Json 13.0.1
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- Moq 4.13.0
- NUnit 3.13.2
- NUnit3TestAdapter 3.16.1
- CommandLineParser 2.8.0
- Handlebars.Net 1.11.5
- Humanizer.Core 2.8.26
- Microsoft.Extensions.DependencyInjection 3.1.9
- Newtonsoft.Json 13.0.1
- PySocks ==1.7.1
- async-generator ==1.10
- attrs ==21.4.0
- certifi ==2021.10.8
- cffi ==1.15.0
- cryptography ==37.0.2
- dataclasses ==0.6
- debugpy ==1.6.0
- h11 ==0.13.0
- idna ==3.3
- importlib-metadata ==4.11.3
- inflection ==0.5.1
- iniconfig ==1.1.1
- more-itertools ==8.13.0
- multidict ==6.0.2
- outcome ==1.1.0
- packaging ==21.3
- pluggy ==1.0.0
- py ==1.11.0
- pyOpenSSL ==22.0.0
- pycparser ==2.21
- pyparsing ==3.0.8
- pytest ==6.2.5
- pytest-instafail ==0.4.2
- pytest-mock ==3.7.0
- pytest-trio ==0.7.0
- sniffio ==1.2.0
- sortedcontainers ==2.4.0
- toml ==0.10.2
- trio ==0.20.0
- trio-websocket ==0.9.2
- urllib3 ==1.26.9
- wsproto ==1.1.0
- zipp ==3.8.0
- async-generator ==1.10
- attrs ==21.4.0
- certifi ==2021.10.8
- cffi ==1.15.0
- cryptography ==37.0.2
- dataclasses ==0.6
- debugpy ==1.6.0
- h11 ==0.13.0
- idna ==3.3
- importlib-metadata ==4.11.3
- inflection ==0.5.1
- iniconfig ==1.1.1
- more-itertools ==8.13.0
- multidict ==6.0.2
- outcome ==1.1.0
- packaging ==21.3
- pluggy ==1.0.0
- py ==1.11.0
- pycparser ==2.21
- pyopenssl ==22.0.0
- pyparsing ==3.0.8
- pysocks ==1.7.1
- pytest ==6.2.5
- pytest-instafail ==0.4.2
- pytest-mock ==3.7.0
- pytest-trio ==0.7.0
- sniffio ==1.2.0
- sortedcontainers ==2.4.0
- toml ==0.10.2
- trio ==0.20.0
- trio-websocket ==0.9.2
- urllib3 ==1.26.9
- wsproto ==1.1.0
- zipp ==3.8.0
- selenium-webdriver ~> 4.2
- ffi >= 0 development
- pry ~> 0.14 development
- rack ~> 2.0 development
- rake >= 0 development
- rspec ~> 3.0 development
- rubocop ~> 1.31 development
- rubocop-performance ~> 1.13 development
- rubocop-rake >= 0 development
- rubocop-rspec ~> 2.12 development
- webmock ~> 3.5 development
- webrick ~> 1.7 development
- yard ~> 0.9.11 development
- childprocess >= 0.5, < 5.0
- rexml ~> 3.2, >= 3.2.5
- rubyzip >= 1.2.2, < 3.0
- websocket ~> 1.0
- assert_cmd 2.0.7 development
- rstest 0.16.0 development
- clap 4.0.32
- directories 4.0.1
- env_logger 0.10.0
- exitcode 1.1.2
- flate2 1.0.25
- infer 0.12.0
- log 0.4.17
- regex 1.7.0
- reqwest 0.11.13
- serde 1.0.152
- serde_json 1.0.91
- tar 0.4.38
- tempfile 3.3.0
- tokio 1.24.1
- zip 0.6.3
- actions/checkout v3 composite
- actions/upload-artifact v3 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- p0deje/setup-bazel 0.2.0 composite
- abhi1693/setup-browser v0.3.4 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- browser-actions/setup-chrome latest composite
- p0deje/setup-bazel 0.2.0 composite
- abhi1693/setup-browser v0.3.4 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- actions/setup-node v1 composite
- actions/setup-node v2 composite
- browser-actions/setup-chrome latest composite
- p0deje/setup-bazel 0.2.0 composite
- abhi1693/setup-browser v0.3.4 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- actions/setup-python v4 composite
- browser-actions/setup-chrome latest composite
- p0deje/setup-bazel 0.2.0 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- browser-actions/setup-chrome latest composite
- browser-actions/setup-edge latest composite
- p0deje/setup-bazel 0.2.0 composite
- actions-rs/toolchain v1 composite
- actions/checkout v3 composite
- actions/checkout v3 composite
- peaceiris/actions-label-commenter v1 composite
- dessant/lock-threads v2 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- p0deje/setup-bazel 0.2.0 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- p0deje/setup-bazel 0.2.0 composite
- actions/stale v4 composite
- 189 dependencies
- ubuntu/focal@sha256 1e48201ccc2ab83afc435394b3bf70af0fa0055215c1e26a5da9b50a1ae367c9 build
- addressable 2.8.1
- ast 2.4.2
- coderay 1.1.3
- crack 0.4.5
- diff-lcs 1.5.0
- ffi 1.15.5
- hashdiff 1.0.1
- json 2.6.3
- method_source 1.0.0
- parallel 1.22.1
- parser 3.1.3.0
- pry 0.14.1
- public_suffix 5.0.1
- rack 2.2.5
- rainbow 3.1.1
- regexp_parser 2.6.1
- rexml 3.2.5
- rspec 3.12.0
- rspec-core 3.12.0
- rspec-expectations 3.12.1
- rspec-mocks 3.12.1
- rspec-support 3.12.0
- rubocop 1.42.0
- rubocop-ast 1.24.1
- rubocop-performance 1.15.2
- rubocop-rspec 2.16.0
- ruby-progressbar 1.11.0
- rubyzip 2.3.2
- selenium-devtools 0.108.0
- selenium-webdriver 4.7.1
- spoon 0.0.6
- unicode-display_width 2.3.0
- webmock 3.18.1
- webrick 1.7.0
- websocket 1.2.9
- yard 0.9.28
- abhi1693/setup-browser v0.3.5 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- browser-actions/setup-chrome latest composite
- browser-actions/setup-edge latest composite
- mxschmitt/action-tmate v3 composite
- p0deje/setup-bazel 0.2.0 composite
- actions/checkout v3 composite
- p0deje/setup-bazel 0.2.0 composite
- actions/checkout v4 composite
- ad-m/github-push-action master composite
- ubuntu focal@sha256 build
- Jinja2 ==3.0.3
- Sphinx ==1.8.2
Score: 39.30500560444356