Use the click option in a specific time

Hello, I just wanted to know if is possible to use the time option along with the click option, What I am trying to do is select the hour I want the click to work instead of using the Delay option

{note: trim=yes}{formmenu: default=; 1 Second; 1 minute; 10 Minutes; 15 minutes; 30 minutes; 45 Minutes; 1 hour; 1 hour 30 minutes; 1 hour 40 minutes; 2 Hours; name=status; trim=left}{endnote}Listo mi shack
{if: status = "1 Second"; trim=right}{wait: delay=+1s}{click: selector=.selectable + .selectable> .user-menu-button}{endif: trim=yes}

Hello Aldo,

If I understand correctly, you want the snippet to keep waiting until a specific hour of the day before executing?

You can achieve this by using a dynamic value in the {delay} command. I modified your code slightly to simplify it for example purposes, but you could keep the human readable format using {if/else} to adapt the time.

Please keep in mind that snippets are designed to be executed shortly after they're triggered, and making a snippet wait for several hours before finishing may have unintended consequences, such as not working because the site was closed or changed.

{note: trim=yes}{formmenu: default=; 1s; 1m; 30m; 60m; 120m; name=status; trim=left}{endnote}Listo mi shack
{if: status = "1 Second"; trim=right}{wait: delay=+{=status}}{click: selector=.selectable + .selectable> .user-menu-button}{endif: trim=yes}