Python Pynput 不循环

问题描述

我想循环并在此 mouse.position = (3176,833) 中单击 20 次,但在 pynpt 中循环不起作用,只需单击一次即可停止工作

from pynput.mouse import Button,Controller
import time
mouse = Controller()
time.sleep(2)
print('The current pointer position is {0}'.format(mouse.position))
x = 0

while 10 > x:
    mouse.position = (3176,833)
    mouse.click(Button.left,2)
    x = x + 1

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)