Advertisement
vinissh

seguir_Instagram

Dec 2nd, 2019
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let contador = 0;
  2. let follow_me = document.querySelectorAll('.L3NKy');
  3.  
  4. follow_me.forEach((v,i)=>{
  5.     setTimeout(()=>{
  6.         if(!v.classList.contains('_8A5w5')){
  7.             v.click();
  8.             contador++;
  9.             console.log('Meu usuário recebeu '   +contador+ '  seguidores')
  10.         }else{
  11.             console.log('Eu já sigo este usuário.')
  12.         }
  13.  
  14.     },i * 10000)
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement