ui-automata 0.1.0

Declarative Workflow Engine for UI Automation
Documentation
mod action;
mod condition;
pub mod debug;
pub mod duration;
mod error;
mod executor;
pub mod expression;
pub mod lint;
mod node_cache;
mod output;
mod plan;
mod platform;
mod recovery;
mod registry;
pub mod schema;
mod selector;
mod shadow_dom;
mod snapshot;
mod step;
mod tab_handle;
mod workflow;
pub mod yaml;

#[cfg(any(test, feature = "mock"))]
pub mod mock;

pub use action::*;
pub use condition::*;
pub use error::*;
pub use executor::*;
pub use output::*;
pub use plan::*;
pub use platform::*;
pub use recovery::*;
pub use registry::*;
pub use selector::*;
pub use shadow_dom::*;
pub use step::*;
pub use tab_handle::*;
pub use workflow::*;
pub use yaml::PhaseEvent;