Skip to content

Instantly share code, notes, and snippets.

@duchenpaul
Created January 6, 2019 14:08
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 duchenpaul/ccceaa47a274bfeed80854fba9cc1bfe to your computer and use it in GitHub Desktop.
Save duchenpaul/ccceaa47a274bfeed80854fba9cc1bfe to your computer and use it in GitHub Desktop.
A very simple program which clicks back forward
import time
import pyautogui
print('ready')
time.sleep(3)
print('start')
for i in range(30):
pyautogui.click(1689,444)
time.sleep(.5)
pyautogui.click(1622,602)
time.sleep(.5)
print('done')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment