Skip to main content

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//! - Page-level keyboard input
8
9pub mod click;
10pub mod fill;
11pub mod keyboard;
12pub mod scroll;
13
14pub use click::{
15    capture_pre_click_state, click_button, click_element, verify_click, ClickOptions, ClickResult,
16};
17pub use fill::{fill_text_area, perform_fill, verify_fill, FillOptions, FillResult};
18pub use keyboard::{key_down, key_up, press_key, type_text};
19pub use scroll::{
20    scroll_into_view, scroll_into_view_if_needed, verify_scroll, ScrollBehavior, ScrollOptions,
21    ScrollResult,
22};