Created
January 6, 2019 14:08
-
-
Save duchenpaul/ccceaa47a274bfeed80854fba9cc1bfe to your computer and use it in GitHub Desktop.
A very simple program which clicks back forward
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 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