Created
March 24, 2019 07:16
-
-
Save pagewang0/5c1233fa171703bac7fee92e85a22780 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyautogui | |
def find(): | |
for i in range(10): | |
pyautogui.moveTo(300, 300, duration=0.25) | |
pyautogui.moveTo(400, 300, duration=0.25) | |
pyautogui.moveTo(400, 400, duration=0.25) | |
pyautogui.moveTo(300, 400, duration=0.25) | |
find() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment