Skip to content

Instantly share code, notes, and snippets.

@phocks
Created June 30, 2020 20:05
Show Gist options
  • Save phocks/c6f595861664c04730d57b1d2c14c3b3 to your computer and use it in GitHub Desktop.
Save phocks/c6f595861664c04730d57b1d2c14c3b3 to your computer and use it in GitHub Desktop.
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
var buttons = document.querySelectorAll(".follow_button");
buttons.forEach(async button => {
button.click();
await sleep(2000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment