viewpoint_core/wait/
mod.rs

1//! Wait system for Playwright-compatible load states and auto-waiting.
2
3mod load_state;
4mod waiter;
5
6pub use load_state::DocumentLoadState;
7pub use waiter::{LoadStateWaiter, NavigationResponseData};