I am trying to short circuit a web macro if the user is already logged in. I moved my logging in script out of my other macro because the Login portion of the website was failing frequently... I'm trying to make the job a little more resilient by only logging in one time for the job and using a separate macro (with cookies forwarded to the task) to handle all of the work on the site. It works well except when the account is already logged in from the first time running the job... Looking at the toolbox, there is a try catch and a if control. Is there a way to use those while recording? Also, I tried adding a Check element step to the existing macro and that changed itself into a click element when I did the test run. My thought was to check if an element exists, if it does, proceed with logging in. If it doesn't, the macro is done because i'm already logged in. Any ideas on how to get that to work?