Question
1
Replies
868
Views
NIIT-Tech
Posted: October 19, 2017
Last activity: November 6, 2018
Scheduling a process using timer event
I am using timer event with an interval of 60 seconds to invoke automation of a webpage but the automation is not getting triggered on its own. Please see the attached automation and guide.
**Moderation Team has archived post**
This post has been archived for educational purposes. Contents and links will no longer be updated. If you have the same/similar question, please write a new post.
This is kind of a design philosophy question. You're capturing the "tick" of the timer, but starting it based on its "tick" event. That isn't going to work because the timer isn't running, so it can't tick, so it can't run, recursive. Instead what you would want to do is use a different event. Since your automation is reliant on the web page, I would suggest starting your automation off of the "Created" event of the page. Then use the start() method for the timer, wait for 60 ticks to finish, and begin your automation from there.