Created
May 26, 2022 04:14
-
-
Save sajjadjaved01/4d0d7197057795230690cd21d9f6ea98 to your computer and use it in GitHub Desktop.
apple script to click repeatedly.
This file contains 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
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