viewpoint-cdp 0.4.3

Low-level Chrome DevTools Protocol implementation over WebSocket
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Page domain types.
//!
//! The Page domain provides actions and events related to the inspected page.

mod events;
mod params;
mod results;
mod types;

// Re-export all types for backwards compatibility
pub use events::*;
pub use params::*;
pub use results::*;
pub use types::*;