oxibrowser-cdp 0.15.0

Chrome DevTools Protocol server for browser automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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.
//!

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

pub mod domains;

pub use server::CdpServer;