browsing 0.1.7

Browser automation: navigate, click, extract, screenshot. Standalone browser control via CDP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Actor module for low-level browser interactions

pub mod element;
pub mod keyboard;
pub mod mouse;
pub mod page;

pub use element::Element;
pub use keyboard::get_key_info;
pub use mouse::{Mouse, MouseButton};
pub use page::{Page, ShadowElementInfo};