xdotool

ubuntu下安装方法
输入以下命令:
sudo apt-get install xdotool

获取鼠标坐标

xdotool getmouselocation

findclient: 54526281
x:871 y:542 screen:0 window:54526281

 

写一个脚本模拟鼠标点击

#!/bin/bash
while (true)
do
xdotool mousemove 704 301; xdotool click 1; sleep 2
xdotool mousemove 865 208; xdotool click 1; sleep 2
done

你可能感兴趣的:(xdotool)