codetether-browser 0.1.0

Browser automation runtime for CodeTether
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! DOM interaction handlers for native browser pages.

mod forms;
mod input;
mod motion;
mod page;
mod selector;
mod upload;

/// Form helpers.
pub(super) use forms::{click_text, fill, toggle};
/// Text and key input helpers.
pub(super) use input::{press, type_text};
/// Pointer, focus, and scroll helpers.
pub(super) use motion::{blur, click, focus, hover, scroll};
/// File upload helper.
pub(super) use upload::upload;