Guest User

Untitled

a guest
Oct 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // Sends sugested texts in linked in as fast as we can
  2. let i = setInterval(() => {
  3. let $btns = $('.conversations-quick-replies__container button');
  4.  
  5. if($btns.length == 0) return;
  6. console.log('clicking');
  7. $btns[Math.floor(Math.random() * $btns.length)].click();
  8. }, 100);
  9.  
  10. // to stop
  11. clearInterval(i);
Add Comment
Please, Sign In to add comment