I have this code that clicks all buttons once.. what i want is to have a small delay 1 second after each button is clicked.. so not really at once, but simultaneously one after the other.... till all buttons are clicked!
here's the code:
var inputs = document.getElementsByClassName('xxxxxxxx');
for (var i=0; i<inputs.length;i++)
{
inputs[i].click();
}