Skip to content

Instantly share code, notes, and snippets.

@bobismijnnaam
Created August 19, 2019 09:22
Show Gist options
  • Save bobismijnnaam/54a2980fe6e19df8a36bf88b3dc09eea to your computer and use it in GitHub Desktop.
Save bobismijnnaam/54a2980fe6e19df8a36bf88b3dc09eea to your computer and use it in GitHub Desktop.
var xs = document.querySelectorAll("[data-testid*='unfollow']");
var count = 0;
console.log(xs.length);
for (var i = 0; i < xs.length && count < 9999; i++) {
xs[i].click();
var ys = document.querySelectorAll("[data-testid*='confirmationSheetConfirm']");
ys[0].click();
count++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment