[][src]Trait webdriver_install::DriverFetcher

pub trait DriverFetcher {
    pub const BASE_URL: &'static str;

    pub fn latest_version(&self) -> Result<String>;
pub fn direct_download_url(&self, version: &str) -> Result<Url>; }

Associated Constants

pub const BASE_URL: &'static str[src]

Loading content...

Required methods

pub fn latest_version(&self) -> Result<String>[src]

pub fn direct_download_url(&self, version: &str) -> Result<Url>[src]

Loading content...

Implementors

impl DriverFetcher for Chromedriver[src]

pub fn latest_version(&self) -> Result<String>[src]

Returns the latest version of the driver

pub fn direct_download_url(&self, version: &str) -> Result<Url>[src]

Returns the download url for the driver executable

impl DriverFetcher for Geckodriver[src]

pub fn latest_version(&self) -> Result<String>[src]

Returns the latest version of the driver

pub fn direct_download_url(&self, version: &str) -> Result<Url>[src]

Returns the download url for the driver executable

Loading content...