thirtyfour 0.36.3

Thirtyfour is a Selenium / WebDriver library for Rust, for automated website UI testing. Tested on Chrome and Firefox, but any webdriver-capable browser should work.
Documentation
mod resolver;

use crate::WebElement;

pub use resolver::*;

#[cfg(feature = "component")]
pub use thirtyfour_macros::Component;

/// The `Component` automatically implements the `Component` trait derive macro.
///
/// Anything that implements `Component + Clone + From<WebElement>` can be used with
/// ElementResolver to take the resolved element as input, and return the specific type.
///
/// There is also an implementation of ElementResolver for a Vec containing such types.
pub trait Component: Sized + From<WebElement> {
    /// Get the base element for this component.
    fn base_element(&self) -> WebElement;
}