Python 模拟鼠标点击
Posted guxingy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 模拟鼠标点击相关的知识,希望对你有一定的参考价值。
原文:https://blog.csdn.net/weixin_38917807/article/details/81667041
原文:https://blog.csdn.net/weixin_41561539/article/details/94294828
pip安装库:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pymouse pip install -i https://pypi.tuna.tsinghua.edu.cn/simple python-xlib pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pym pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyuserinput pip install pyHook-1.5.1-cp37-cp37m-win_amd64.whl
有一个库需要下载一下: pyHook-1.5.1-cp37-cp37m-win_amd64.whl
下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/
步骤:进去网页 搜索pyhook 下载放在c盘根目录 “cd /”进入到根目录,然后执行命令安装库就可以了
代码:
from pymouse import PyMouse m = PyMouse() a = m.position() #获取当前坐标的位置 print(a) m.move(31, 223) #鼠标移动到(x,y)位置 a = m.position() print(a) m.click(31, 223) #移动并且在(x,y)位置左击
。
以上是关于Python 模拟鼠标点击的主要内容,如果未能解决你的问题,请参考以下文章