webdriver-install

Rust Sponsor
count Crates.io docs.rs MSRV

Fast and simple webdriver installation

Usage

As a CLI

```shell

Install into $HOME/.webdrivers

webdriver-install --install geckodriver

Or into a specified directory

webdriver-install --install geckodriver --dir /tmp/webdrivers

Check that it installed correctly:

/tmp/webdrivers/geckodriver --help ```

As a Rust library

```rust use webdriver_install::Driver; use std::path::PathBuf;

fn main() { // Install into $HOME/.webdrivers Driver::Chrome.install();

// Install into specified path
Driver::Chrome.install_into(PathBuf::from("/tmp/webdrivers"));

} ```

Implementation state

Driver installation support:

Usability:

Inspired by: