webdriver_client
on crates.io
Currently only geckodriver (WebDriver proxy for Firefox) is supported as a WebDriver backend.
This crate expects geckodriver
to be on your path.
The script bin/download_geckodriver
downloads the Linux x64 geckodriver binary release from the geckodriver Github releases page to bin/geckodriver
.
This snippet will download geckodriver and place it on your current shell's path:
bin/download_geckodriver
export PATH=$PATH:$PWD/bin
This fork is based on equalsraf's excellent work from https://github.com/equalsraf/webdriver.