Script for clicking Proceed button at Google Play cart every 4sec to buy Nexus
It really helps, my friend just got his Nexus 4 order with this script. In Google Chrome press Ctrl+Shift+J, paste the script to Console, and hit Enter.
setInterval( function() { var buttons = document.getElementsByClassName( 'buy-button-price' ); for ( var i = 0; i < buttons.length; i++ ) { if ( buttons[i].value === 'Proceed' ) { buttons[i].click(); console.log("click") } } }, 4000);
4 comments
[ 3.6 ms ] story [ 24.8 ms ] threadHowever, it HAS NO DETECTION OF SUCCESS, there is a popup not a page change. If I did it again I'd save the setInterval() result id and then use clearInterval(thatVar) when it works.