You can click buttons on websites with this code
- You must edit code for target button. (See the configuration below)
- Go to taget website and press F12 (open Console)
- Paste the code and set click times (change '[CLICK TIMES]' to '1000' or want do you want)
- Press enter and wait
jQuery('.[BUTTON CLASS]').each(function(index, value) { setTimeout(function() { jQuery(value).trigger('click'); }, index * [CLICK TIMES]); });
You should configure code like this
jQuery('.btn-small').each(function(index, value) { setTimeout(function() { jQuery(value).trigger('click'); }, index * 5000); });
Hasan CAN - https://hasan.im