Hello. I have a sequence (seq1) of varied activities which i invoke from another sequence (seq2).
When seq2 is run and each of the activities in seq1 is executed and terminated, i want to take a screenshot of the window without adding a “take a screenshot” activity after each activity in seq1. Is this possible?
if it were code it should be like
For each [Activity] in [seq1]
If ActivityStatus = JustCompleted
TakeScreenshot //At the time the activity is terminated
end
end
Im planning to do this for the entire project so adding screenshot activities after each element of the sequence seems not optimal