Created
June 3, 2019 02:45
-
-
Save DineshDevaraj/b9dafbe25faaf4b53472a87c05b086f1 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 time | |
import pyautogui | |
screenWidth, screenHeight = pyautogui.size() | |
iconx = 85 | |
icony = screenHeight - 25 | |
I = 0 | |
while True : | |
if I > 7 : I = 0 | |
pyautogui.moveTo(iconx+62*I, icony) | |
pyautogui.click() | |
time.sleep(3) | |
I += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment