Docs Crates.io

AutoPilot

AutoPilot is a Rust port of the Python C extension AutoPy, a simple, cross-platform GUI automation library for Python. For more information, see the README on that repo.

Currently supported on macOS, Windows, and X11 with the XTest extension.

Examples

```rust extern crate autopilot; extern crate rand; use rand::Rng;

const TWOPI: f64 = std::f64::consts::PI * 2.0; fn sinemousewave() { let screensize = autopilot::screen::size(); let scopedheight = screensize.height / 2.0 - 10.0; // Stay in screen bounds. for x in 0..screensize.width as u64 { let y = (scopedheight * ((TWOPI * x as f64) / screensize.width).sin() + scopedheight).round(); let duration: u64 = rand::threadrng().genrange(1, 3); autopilot::mouse::moveto(autopilot::geometry::Point::new( x as f64, y as f64 )).expect("Unable to move mouse"); std::thread::sleep(std::time::Duration::from_millis(duration)); } } ```

```rust extern crate autopilot;

fn main() { autopilot::key::type_string("Hello, world!", None, None, &[]); let _ = autopilot::alert::alert("Hello, world!", None, None, None); } ```