Does anybody know a method for an automated extraction of images for each flowchart/sequence/state-machine within a UiPath project? I know its possible to manually open each file, right click and select “Save as Image” but i’m more interrested in a command based solution.
Perhaps someone know an xaml interpreter suitable for the UiPath xaml files?
Regards,
XAML files are basically xml files; hence you will have an xml node for each activity / sequence with all the relevant visual info (position, shape, type_ as child nodes or attributes. I am not sure if there is a specific xaml interpreter for this but if you have some .NET knowledge you can build your own drawing mechanism…