2.0.0 • Published 4 months ago
gametra v2.0.0
Still in development
Gametra
A cloud game driver and automator
- Gametra is element-ignostic, it does not care about the element you are interacting with, but only the position of the mouse and the key you are pressing.
Install
$ npm i gametra
Usage
const {
Game,
ImageMatcher
} = require('gametra')
const game = new Game({
url: 'https://www.google.com'
})
await game.launch()
await game.click(100, 100)
await game.screenshot()