Skip to main content

playwright_cdp/cdp/
mod.rs

1//! Low-level CDP plumbing: WebSocket transport, wire-format messages,
2//! the multiplexing connection, and the per-target session.
3
4pub mod connection;
5pub mod messages;
6pub mod session;
7pub mod transport;
8
9pub use connection::CdpConnection;
10pub use messages::{CdpEvent, CdpRequest, CdpResponse};
11pub use session::CdpSession;
12pub use transport::WebSocketWriter;