Skip to content

Instantly share code, notes, and snippets.

@sajjadjaved01
Created May 26, 2022 04:14
Show Gist options
  • Save sajjadjaved01/4d0d7197057795230690cd21d9f6ea98 to your computer and use it in GitHub Desktop.
Save sajjadjaved01/4d0d7197057795230690cd21d9f6ea98 to your computer and use it in GitHub Desktop.
apple script to click repeatedly.
activate application "Finder"
tell application "System Events"
tell process "Finder"
set endTime to 5
repeat while 8 is greater than endTime
click at {200 + endTime * 2, 5}
endTime - 1
delay 10
end repeat
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment