Guest User

Untitled

a guest
Feb 25th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. /**
  2. * Paste this in a browser console to automate the processes of clicking
  3. * "Select All" and "Delete" in OWA. Useful for flushing out abandoned inboxes
  4. * (from the user side).
  5. */
  6. (function () {
  7. document.querySelector('input[type=checkbox]').click();
  8. document.querySelector('a#lnkHdrdelete').click();
  9. })();
Add Comment
Please, Sign In to add comment