playwright-cdp 0.1.1

Drive Chromium directly via the Chrome DevTools Protocol (CDP) — no Playwright driver required.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Low-level CDP plumbing: WebSocket transport, wire-format messages,
//! the multiplexing connection, and the per-target session.

pub mod connection;
pub mod messages;
pub mod session;
pub mod transport;

pub use connection::CdpConnection;
pub use messages::{CdpEvent, CdpRequest, CdpResponse};
pub use session::CdpSession;
pub use transport::WebSocketWriter;