Skip to content

Instantly share code, notes, and snippets.

@DineshDevaraj
Created June 3, 2019 02:45
Show Gist options
  • Save DineshDevaraj/b9dafbe25faaf4b53472a87c05b086f1 to your computer and use it in GitHub Desktop.
Save DineshDevaraj/b9dafbe25faaf4b53472a87c05b086f1 to your computer and use it in GitHub Desktop.
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