patchright 0.1.0

Playwright-inspired Rust browser automation facade backed by the Playhard workspace.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Playwright-inspired facade for the Playhard browser automation workspace.
//!
//! This crate currently re-exports the high-level browser automation API from
//! [`playhard`] so early adopters can depend on the intended product name while
//! the project is still in flight.

#![deny(missing_docs)]

pub use playhard::{cdp, launcher, transport, AutomationError, Browser, Result};
pub use playhard_launcher::{LaunchOptions, TransportMode};