oxibrowser-cdp 0.9.1

Chrome DevTools Protocol server for browser automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! OxiBrowser CDP — Chrome DevTools Protocol server.
//!
//! Implements the CDP WebSocket protocol so that tools like Puppeteer and
//! Playwright can connect to OxiBrowser, just like they connect to Chrome.
//!
//! Mirrors Lightpanda's `src/cdp/` module structure.

pub mod event;
pub mod protocol;
pub mod server;
pub mod session;

pub mod domains;

pub use server::CdpServer;