I'm bad at JS. Who can tell me how to correctly add a delay in for?
I want clicks to be executed with a certain delay.
function run () {
var link=document.getElementsByClassName("icon like2Icon");
for(i=0;i<link.length;i++){link[i].click()}
}
run();