Advertisement
Guest User

Untitled

a guest
May 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 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. $(".cr-helpful-text").each(function(){$(this).click()});
  8. setTimeout(function(){
  9. $("a:contains('Suivant→')")[0].click();
  10.  
  11. if (typeof stopNow === 'undefined' || stopNow == null)
  12. setTimeout(doClick, 10000);
  13. }, 2500);
  14. }
  15.  
  16. setTimeout(doClick, 2500);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement