Version 1:
Simply add the script below to the body of your node.
<script>
setTimeout(() => {
let scope = $('.app').scope();
scope.next();
}, 3000);
</script>
Version 2:
Use the code below for version 2.
<button class="next-btn" hidden="hidden" id="next-btn"></button>
<script>
setTimeout(() => document.getElementById('next-btn').click(), 3000);
</script>
Set Delay Timeout:
You can change the time delay by updating the set timeout time to the desired millisecond time. Please refer to the screenshot below.