1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
set direcciones to paragraphs of (read POSIX file "/Users/lamac/Desktop/fichero.txt") repeat with linea in direcciones tell application "Safari" open location linea activate end tell delay 10 activate application "Safari" tell application "System Events" tell process "Safari" clic at {544, 273} end tell end tell delay 20 tell application "Safari" quit end tell delay 10 end repeat |