Skip to content

Instantly share code, notes, and snippets.

@samuelteixeiras
Created May 27, 2020 19:45
Show Gist options
  • Save samuelteixeiras/15c4e911d42e64420db4a45cfeec2adf to your computer and use it in GitHub Desktop.
Save samuelteixeiras/15c4e911d42e64420db4a45cfeec2adf to your computer and use it in GitHub Desktop.
import AutoPilot from 'https://raw.githubusercontent.com/divy-work/autopilot-deno/master/mod.ts';
// create a new AutoPilot instance.
var pilot = new AutoPilot();
// type and alert a string
pilot
.type("Yay! This works")
.alert("This is a alert")
// get screen size
pilot.screenSize();
// move mouse
pilot.moveMouse(200, 400)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment