Akash_Jariwala
(Jariwala, Akash - AM/NS India - IT (HAZ))
1
Hello Geeks,
How to debug any automation project in studioX as we do in UiPath Studio. Currently I am doing it using naive method, which is using printing (Log Message) between suspected activities. But it takes to much time. Can we any how do it using breakpoint method ?
if not, then any alternative or fast method to identify the activity on which we are getting error. Additionally, upon clicking on the error message, one dialogue box popped up named “Message Details” showing “job ID”, “Machine ID” etc etc. Can we guess anything from that ?
In Studio X there is no option to debug, rather than this you can use Log messages for each activity to know the step or you can use try catch activity, implement all your code in try block and add catch block in catch block use message box or log message.
Use Exception.message in log message it will explain at what step it got failed.
No we can’t use breakpoints here. The concept behind StudioX is, users will be developing small automations for small tasks hence no debug functionality is there. You will have to use log message to log the state of execution or relay on the error message if any