Advertisement
Guest User

Untitled

a guest
Dec 11th, 2020
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript:function clickWith(arr, txt) {for (var i = 0; i < arr.length; i++) {if (arr[i].innerText == txt) {arr[i].click();}}}var buttons = document.getElementsByClassName("q-btn q-btn-item non-selectable no-outline q-btn--standard q-btn--rectangle bg-primary text-white q-btn--actionable q-focusable q-hoverable q-btn--wrap");setTimeout( () => { clickWith(buttons, "DELETE"); }, 50);setTimeout( () => { clickWith(buttons, "CONFIRM"); }, 2000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement