RobotJS是一个Node.js的GUI自动化工具,可用来控制鼠标、键盘和读取屏幕。
目前自在Mac+Node.js0.10.31下测试通过。
示例代码:
varrobot=require("robotjs");//Getthemouseposition,retunsanobjectwithxandy.varmouse=robot.getMousePos();console.log("Mouseisatx:"+mouse.x+"y:"+mouse.y);//Movethemousedownby100pixels.robot.moveMouse(mouse.x,mouse.y+100);//Leftclick!robot.mouseClick();
评论