PDA

View Full Version : Need a Very Simple App


royalsjock
2009.04.10, 02:50 PM
I need an application that you open it, and it is the login to the site, once you login, it goes to one specified link and just refreshes. I can give more details to someone who is interested in developing this. Thanks!

mikey
2009.05.24, 07:17 AM
This could be accomplished with Applescript:

tell application "Safari"

repeat 20 times
open location "http://www.google.com"
end repeat
end tell

This script will not login though, just refresh the page 20 times.