Created
May 27, 2020 19:45
-
-
Save samuelteixeiras/15c4e911d42e64420db4a45cfeec2adf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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