rust_drission 0.1.5

Browser automation library for Rust via Chrome DevTools Protocol (CDP). Connect or launch Chrome, control pages/elements, run JS, cookies, screenshots, request/response listening. API inspired by DrissionPage.
Documentation
1
2
3
4
5
6
7
//! Chrome DevTools Protocol 客户端
//! 通过 WebSocket 与 Chrome 通信

mod client;

pub use client::CdpClient;
pub use client::CdpError;