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
//! Core trait abstractions for browsing-rs
//!
//! This module defines the key traits that enable polymorphism and testability
//! throughout the browsing codebase.

mod browser_client;
mod dom_processor;

pub use browser_client::BrowserClient;
pub use dom_processor::DOMProcessor;