Created
August 25, 2018 20:18
-
-
Save ianfabs/a2a2d22597b1a01e10f7b5cffd7b09b7 to your computer and use it in GitHub Desktop.
Delete all announcements in canvas. Just paste this into the dev console
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
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
(async()=>{ | |
$("._3H0DcbB").click(); | |
await sleep(1000); | |
$("#delete_announcements").click(); | |
await sleep(2000); | |
$("#confirm_delete_announcements").click() | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment