This file contains hidden or 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
| on safari_is_ready(docNum, interval) | |
| repeat | |
| tell application "Safari" | |
| try | |
| do JavaScript "document.readyState" in document docNum | |
| set readyState to result | |
| set finishedLoading to (source of document docNum contains "</html>") | |
| if finishedLoading and readyState is "Complete" then exit repeat | |
| end try | |
| end tell |