Error notification

Discuss RoboTask here
Post Reply
fruitloopy
Posts: 1
Joined: Tue Oct 07, 2008 3:05 am
Location: United Kingdom

Error notification

Post by fruitloopy »

Is it possible that if a task fails to complete and produces an error it can perform an action?
I cant see how I can acheive this using the tools available.
Oleg
Site Admin
Posts: 3014
Joined: Thu Jan 01, 1970 1:00 am
Contact:

Error notification

Post by Oleg »

Go to "Advanced" tab of task editor.
Set the parameter "If error occurred" to "continue execution"

Now you can use {IsError} system variable.
Put after critical step the following steps

if {IsError} = true then
   ...
   do something
   ...
end if
Post Reply