Last active
March 8, 2025 09:50
-
-
Save Ethkuil/ed39d043b2683449d8f84c9a01ba5b03 to your computer and use it in GitHub Desktop.
background: personal homepage of `zhihu.com`
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
async function clickButtonsWithDelay(buttons, delay) { | |
for (const button of buttons) { | |
await new Promise(resolve => setTimeout(resolve, delay)); | |
button.click(); | |
} | |
} | |
for (let i = 0; i < 16; i++) { | |
await clickButtonsWithDelay(document.querySelectorAll('button.is-active'), 100); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment