Hello, I am trying to find out if there is a way to save the state of the variables while debugging a robot. I am currently designing a rather lengthy robot, and there are moments when I need to correct something and consequently lose the values at that point. As a result, I have to restart the robot and go through the entire process again to reach that point, which makes the design quite tedious.
I have a process that involves four data tables. I would like to be able to transfer these data tables to “memory” at a certain point, so that I can later test this activity with that data.
You can’t really store the in ‘memory’ data beyond current execution as those will be garbage collected as soon as their scope ends or the robot stops.
One option you have is, save those 4 datable into an excel file and read them in the part of the bot you want to test.
Once done with testing, delete this temporary logic.
Oh, what a shame. I believe they should implement something like that. I have seen other automation software that includes this feature, and it is really convenient for developing workflows. Sometimes the modifications are minor, and yet you have to restart the entire process to test again.