幽灵游标
在座标之间生成逼真的,类似人的鼠标移动数据,或使用操纵符(例如您绝对不是机器人)在元素之间导航。
哦耶? 机器人可以这样做吗?
安装
yarn add ghost-cursor
或使用npm
npm install ghost-cursor
用法
在2个坐标之间生成运动数据。
import { path } from "ghost-cursor"
const from = { x : 100 , y : 100 }
const to = { x : 600 , y : 700 }
const route = path ( from , to )
/**
* [
* { x: 100, y: 100 },
* { x: 108.75573501957051, y: 102.83608396351725 },
* { x: 117.54686481838
1