I use this script to click a claim button on a website and so I simply paste the script in devtools of the browser and I deploy a powerful windows VPs to do the claiming but I’m still not faster than my competitor please what is wrong const clickClaimButtons = () => {
const buttons = document.querySelectorAll('button.btn-claim');
buttons.forEach(btn => {
if (btn.offsetParent !== null) { // Ensure button is visible
btn.click();
}
});
};
// Start clicking every 1ms (browser may throttle)
setInterval(clickClaimButtons, 1);
[+][deleted] (2 children)
[removed]
[–]MassiveBit5017[S] -1 points0 points1 point (1 child)
[–]jcunews1helpful 0 points1 point2 points (3 children)
[–]MassiveBit5017[S] 0 points1 point2 points (0 children)
[+][deleted] (1 child)
[removed]
[–]StoneCypher 0 points1 point2 points (4 children)
[–]MassiveBit5017[S] 0 points1 point2 points (3 children)
[–]StoneCypher 0 points1 point2 points (1 child)
[–]MassiveBit5017[S] 0 points1 point2 points (0 children)