Last active
July 25, 2019 05:16
-
-
Save Tmn07/4ee34771d829cf25677c84127e77e97b to your computer and use it in GitHub Desktop.
微博批量点击来自微博推荐的关注,然后取消关注。。
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
| var arr = document.getElementsByClassName("info_from S_txt2"); | |
| for (var i = arr.length - 1; i >= 0; i--) { | |
| if (arr[i].innerText=="通过微博推荐关注") { | |
| arr[i].click() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment