automata-windows 0.1.0

Declarative Workflow Engine for Windows UI Automation
Documentation
1
2
3
4
5
6
/// How to locate a UI element within a parent.
#[derive(Debug, Clone)]
pub enum Selector {
    /// Match by localized role and optional exact name.
    Role { role: String, name: Option<String> },
}