Fast and simple webdriver installation
```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"));
} ```
Driver installation support:
chromedriver
geckodriver
edgedriver
iedriver
operadriver
safaridriver
Safaridriver comes pre-installed on all MacOS systems, but we can at least
provide the binary location.Usability:
Inspired by:
wasm-pack
's internal test helpers