robost-uia 0.1.1

Windows UI Automation (UIA) integration for Rust RPA — interact by name, ID, or class
Documentation

Windows UI Automation integration.

Provides direct access to Win32 UI Automation (UIA) for interacting with controls without image recognition. Windows-only; stubs are provided on other platforms so the crate compiles cross-platform.

Usage

- uia_get:
    by: { name: "ユーザー名" }
    property: value
    save_as: username_text

- uia_set:
    by: { name: "ユーザー名" }
    value: "{{ username }}"

- uia_click:
    by: { id: "btnLogin" }

- uia_find:
    by: { class: "Edit" }
    save_as: edit_handle