Running a script to automatically click the "Play" button on an animated weather map, after a page refresh. For use on http://www.intellicast.com/Local/WxMap.aspx. Using Easy Auto Refresh https://chrome.google.com/webstore/detail/easy-auto-refresh/aabcgdmkeabbnleenpncegpcngjpnjkc
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
document.querySelector('body'); | |
setTimeout(() => { | |
document.querySelector('#__wxMap_playPause').click(); | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment