browser_commander/interactions/
mod.rs

1//! Interaction operations for browser automation.
2//!
3//! This module provides utilities for:
4//! - Clicking elements
5//! - Scrolling elements into view
6//! - Filling form elements
7
8pub mod click;
9pub mod fill;
10pub mod scroll;
11
12pub use click::{
13    capture_pre_click_state, click_button, click_element, verify_click, ClickOptions, ClickResult,
14};
15pub use fill::{fill_text_area, perform_fill, verify_fill, FillOptions, FillResult};
16pub use scroll::{
17    scroll_into_view, scroll_into_view_if_needed, verify_scroll, ScrollBehavior, ScrollOptions,
18    ScrollResult,
19};