automata-windows 0.1.0

Declarative Workflow Engine for Windows UI Automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Properties of a UI element probed at a point.
#[derive(Debug, Clone)]
pub struct ElementInfo {
    pub name: String,
    pub role: String,
    pub class: String,
    pub automation_id: String,
    pub value: String,
    pub enabled: bool,
    pub focusable: bool,
    pub x: i32,
    pub y: i32,
    pub w: i32,
    pub h: i32,
}