thirtyfour 0.36.2

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Types used with action chains.
pub mod action;
/// Support for desired capabilities.
pub mod capabilities;
/// Helpers for webdriver commands.
pub mod command;
/// Configuration options for a `WebDriver` instance.
pub mod config;
/// Cookie type.
pub mod cookie;
/// Types for working with keyboard input.
pub mod keys;
/// Types used with print commands.
pub mod print;
/// Type for request method and body.
pub mod requestdata;
/// Common types used within thirtyfour.
pub mod types;