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
12
//! Observability module for session recording and replay
//!
//! Provides `SessionRecorder` to capture browser automation steps,
//! DOM snapshots, and action traces for debugging and post-mortem analysis.

pub mod recorder;
pub mod views;

pub use recorder::SessionRecorder;
pub use views::{
    RecorderConfig, SessionTrace, StepRecord, StepResult, TraceMetadata,
};