Skip to content

Instantly share code, notes, and snippets.

@Tmn07
Last active July 25, 2019 05:16
Show Gist options
  • Select an option

  • Save Tmn07/4ee34771d829cf25677c84127e77e97b to your computer and use it in GitHub Desktop.

Select an option

Save Tmn07/4ee34771d829cf25677c84127e77e97b to your computer and use it in GitHub Desktop.
微博批量点击来自微博推荐的关注,然后取消关注。。
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