How to run individual module of a project?

Hi All

In my project i have created different sequences for different modules (Like Login, Logout, File Download etc.). And I am calling each sequence from Main in a flowchart. The first sequence in Main is InitialSettings.xaml where i am reading the config file and putting in dictionary. Passing the dictionary to other modules as arguments to process further. So each module has dependency with the InitialSettings.xaml.

Is there any way that we can run the individual module independently while testing. Currently it cant because it has to take values from config file which is in different sequence in Main.

Hi @kkpatel,
If you will use Debugging then you have the table on the left where you can manually provide values for you variables/arguments at each step.

I suggest passing individual values to your modules instead of the full configuration.

1 Like