Repository
Current version released
6 years ago
Dependencies
github.com
AutoPilot is a simple cross-platform desktop automation library for Deno.
Get in touch:
- Discord: undefined_void#8575
Features
Keyboard
- Type a string using
.type - Tap a key using
.tap - Toggle key using
.toggleKey
- Type a string using
Mouse
- Simulate mouse movement using
.moveMouse - Get mouse position using
.mousePosition - Get mouse position pixel color
.pixelColor
- Simulate mouse movement using
Screen
- Capture screen using
.screenshot - Get screen size using
.screenSize - Check if point out of bounds using
.pointVisible - Get number of pixels in a point using
.screenScale
- Capture screen using
Alert
- Native popup using
.alert
- Native popup using
Documentation
Detailed documentation of the API is available at:
Requirements
Linux
sudo apt-get update
sudo apt-get install libxtst-dev cmake libc-dev libx11-dev libxcb1-devUsage
Running your Deno script with AutoPilot requires some flags
deno run --unstable --allow-net --allow-plugin --allow-env --allow-read --allow-write file.tsNOTE: Prebuilt binaries are automatically downloaded the first time you import Autopilot in your project and are cached.
import AutoPilot from 'https://raw.githubusercontent.com/divy-work/autopilot-deno/master/mod.ts';
// create a new AutoPilot instance.
var pilot = new AutoPilot();
// type a string
pilot.type("Yay! This works");
// alert something
pilot.alert("This is a alert");
// get screen size
pilot.screenSize();
// move mouse
pilot.moveMouse(200, 400);
// take a full-screen screenshot
pilot.screenshot("screenshot.png");