This file has been truncated, but you can view the full file.
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
/*! For license information please see main.0bc3dd16.js.LICENSE */ ! function(e) { | |
function t(t) { | |
for (var n, i, o = t[0], a = t[1], s = 0, c = []; o.length > s; s++) Object.prototype.hasOwnProperty.call(r, i = o[s]) && r[i] && c.push(r[i][0]), r[i] = 0; | |
for (n in a) Object.prototype.hasOwnProperty.call(a, n) && (e[n] = a[n]); | |
for (u && u(t); c.length;) c.shift()() | |
} | |
var n = {}, | |
r = { | |
1: 0 | |
}; |
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
// Select all elements with the 'aria-label' attribute set to 'Cancel request' | |
const cancelButtons = Array.from(document.querySelectorAll('[aria-label="Cancel request"]')); | |
console.log(cancelButtons.length, 'Cancel request buttons found'); | |
// Function to click each button with a specified interval | |
function clickButtonsWithInterval(buttons, interval) { | |
let index = 0; | |
const intervalId = setInterval(() => { |