I want to make a button click after 10 seconds when the UI loads. I've tried below code in the "On load" event, but seems that the timer doesn't work:
function myFunction() {
me.click(); }
setTimeout(myFunction, 10000);
Any ideas how to trigger the timer in "On load" event?