I'm going to test a complex scenario which expects several other steps to have performed prior to it.
For example , it can be equivalent to have proper data in a warehouse before goods are taken our from it. So in order for fetching to happen, it must first be made sure that there are products in the warehouse and there is a fetch-order. There may be seperate screens to insert products to the warehouse. So before I start testing the fetch scenarios i have to be ready with those.
What would be the best method to be ready with this data? I basically could think of two options.
Go through the actual screens to prepare the data.
Have a DB snapshot with prepared data to perform the wanted scenario.
I'm not sure which way I should move forward and would like to hear similar experiences from the people who have tried something like this.