Created
June 3, 2019 02:45
-
-
Save DineshDevaraj/b9dafbe25faaf4b53472a87c05b086f1 to your computer and use it in GitHub Desktop.
Revisions
-
DineshDevaraj created this gist
Jun 3, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ 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