Files
vim-ale/chromedriver
AJ ONeal 7f0c92e262 add releases.conf for all remaining packages and wire new fetchers
New fetcher packages:
- chromedist: Chrome for Testing API (googlechromelabs.github.io)
- gpgdist: SourceForge RSS for GPG macOS
- mariadbdist: MariaDB downloads REST API

New releases.conf files for:
- GitHub: aliasman, awless, duckdns.sh, hugo-extended, kubens, rg, postgres
- gittag: vim-commentary, vim-zig
- gitea: pathman
- chromedist: chromedriver
- gpgdist: gpg
- mariadbdist: mariadb
- nodedist: node

Alias support (alias_of key):
- golang → go, dashd → dashcore, psql → postgres, zig.vim → vim-zig
- Aliases skip fetching and share cache with their target

Every package with a releases.js now has a releases.conf (except the
dead macos package). fetchraw dispatches to all 13 source types.
2026-03-09 22:48:11 -06:00
..
2026-03-08 19:38:49 -06:00

title, homepage, tagline
title homepage tagline
ChromeDriver https://chromedriver.chromium.org ChromeDriver: WebDriver for Chrome

To update or switch versions, run webi chromedriver@stable (or @v2, @beta, etc).

Cheat Sheet

WebDriver is an open source tool for automated testing of webapps across many browsers. ChromeDriver is a WebDriver created by the Chromium (Google Chrome) team - for Selenium and such.

You probably won't run chromedriver manually, but it must be installed for some testing frameworks.

Also, Chrome must be installed first in order for ChromeDriver to work.

How to Install Chrome on Linux

On Debian (and Ubuntu) Linux you should be able to install Chrome with dpkg and apt:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt install -y google-chrome-stable
sudo apt --fix-broken install -y

You may get an error like this:

chromedriver: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory

If so, try installing chromium-browser:

sudo apt install -y chromium-browser
sudo apt --fix-broken install -y

Other Notes

On Windows chromedriver.exe should Just Work™.

On macOS you may need to install XCode Command Line Tools with xcode-select --install.