Skip to content

Instantly share code, notes, and snippets.

@ngochangjelly
Created July 28, 2020 16:23
Show Gist options
  • Save ngochangjelly/4ab4932c31ab642c79c3120b0fb103a8 to your computer and use it in GitHub Desktop.
Save ngochangjelly/4ab4932c31ab642c79c3120b0fb103a8 to your computer and use it in GitHub Desktop.
let buttons = document.getElementsByClassName('btn btn-sm')
Array.from(buttons).map((bt) => {
if(bt.value === 'Unfollow') {
return
}
bt.click()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment