Python マウスを特定の時間まで自動操作 2022.02.14 2022.02.13import pyautoguicnt = 0while True: pyautogui.moveTo(500, 500, duration=1) pyautogui.moveTo(250, 250, duration=1) pyautogui.PAUSE = 550 cnt += 1 if cnt>= 48: break
コメント