uiautomation 0.0.7

UI Automation Framework for Windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod errors;
pub mod variants;
pub mod core;
pub mod patterns;
pub mod conditions;
pub mod controls;
pub mod actions;

pub use crate::errors::Error;
pub use crate::errors::Result;

pub use crate::core::UIAutomation;
pub use crate::core::UIElement;
pub use crate::core::UITreeWalker;
pub use crate::core::UIMatcher;