browser_commander/high_level/
mod.rs

1//! High-level operations for browser automation.
2//!
3//! This module provides high-level, DRY-compliant utilities
4//! that work across different browser engines.
5
6pub mod universal_logic;
7
8pub use universal_logic::{
9    check_and_clear_flag, find_toggle_button, install_click_listener, wait_for_url_condition,
10};