Created
December 24, 2018 03:29
-
-
Save shawjia/c2b6ace138f453e312078fe6464dbe05 to your computer and use it in GitHub Desktop.
batch follow
This file contains hidden or 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
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