Skip to content

Instantly share code, notes, and snippets.

@pagewang0
Created March 24, 2019 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pagewang0/5c1233fa171703bac7fee92e85a22780 to your computer and use it in GitHub Desktop.
Save pagewang0/5c1233fa171703bac7fee92e85a22780 to your computer and use it in GitHub Desktop.
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