How can I tell Chrome or Firefox to reload the document in the top window? Here\'s what I\'m using for Safari:
osascript -e \' tell application \"Safari
Here's the code for Chrome:
tell application "Google Chrome" tell the active tab of its first window reload end tell end tell
Or more concisely:
tell application "Google Chrome" to tell the active tab of its first window reload end tell