Advertisement
Guest User

Untitled

a guest
May 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. let s = document.createElement('script');
  2. s.src = "https://code.jquery.com/jquery-3.3.1.min.js";
  3. document.body.append(s);
  4.  
  5. function doClick() {
  6. $("[value=\"Marquer cet avis comme utile BOUTON\"]").each(function(){$(this).click()});
  7. setTimeout(function(){
  8. $("a:contains('Suivant→')")[0].click();
  9.  
  10. if (typeof stopNow === 'undefined' || stopNow == null)
  11. setTimeout(doClick, 10000);
  12. }, 2500);
  13. }
  14.  
  15. setTimeout(doClick, 2500);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement