Fantastic encapsulation and commentary on the modern web and attentionspace. There's certainly better ways to do this, but here's one way to automate 1000 clicks from the console: for (let i = 0; i Automating this art piece probably also says ... something.
Running it async will prevent the main screen from lagging: (async () => { const delay = (ms) => new Promise(resolve => setTimeout(resolve, ms)); for (let i = 0; i
function clickLoop() {
document.querySelector('.main-btn').click();
setTimeout(clickLoop, 50)
}