I recently wanted to follow everyone whom my friends follow. But it was quite boring to go through the list and click on the Follow
button. So I decided to do something like this.
Inspect
in your browservar temp = document.getElementsByClassName('btn-sm');
for(let i = 0; i<temp.length; i+=2) {
temp[i].click();
}
Inspect
in your browservar temp = document.getElementsByClassName('artdeco-button--secondary');
for(let i = 0; i<temp.length; i++) {
temp[i].click();
}