Autoclick button

0
Hello   i have a button on my login page and call a nanoflow, how i can  Auto Click in button to call nanoflow? I try use microflow timer but this not result.
asked
1 answers
0

This code should work. To my understanding it clicks as soon as the button is loaded + the delay you set

function doReload() {
   setTimeout(function(){ $(".classNameOfButton").click(); }, 1000);
   
}

doReload();

 

Just copy this code into the HTMLSnippet widget and check the JavaScript with jQuery box

answered