Skip to content

Instantly share code, notes, and snippets.

@Ethkuil
Last active March 8, 2025 09:50
Show Gist options
  • Save Ethkuil/ed39d043b2683449d8f84c9a01ba5b03 to your computer and use it in GitHub Desktop.
Save Ethkuil/ed39d043b2683449d8f84c9a01ba5b03 to your computer and use it in GitHub Desktop.
background: personal homepage of `zhihu.com`
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