Skip to content

Instantly share code, notes, and snippets.

Created November 17, 2017 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2d4e5864be8b3b2bbd087e8a644a4d7f to your computer and use it in GitHub Desktop.
Save anonymous/2d4e5864be8b3b2bbd087e8a644a4d7f to your computer and use it in GitHub Desktop.
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
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