Skip to content

Instantly share code, notes, and snippets.

@shawjia
Created December 24, 2018 03:29
Show Gist options
  • Save shawjia/c2b6ace138f453e312078fe6464dbe05 to your computer and use it in GitHub Desktop.
Save shawjia/c2b6ace138f453e312078fe6464dbe05 to your computer and use it in GitHub Desktop.
batch follow
document.querySelectorAll('div.col-9 span.follow button')
.forEach((ele, i) => {
setTimeout(() => {
console.log(ele.click(), ele.title);
}, i * 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment