Hello,
My scenario:
Currently, I am using referencedRequest scripts in order to use the collection runner with multiple requests in different folders.
E.g.:
Folder A:
-Login > Get all products.
Folder B:
-Login > Get specific product > Add Product to basket
As you see, both folders use login request, this is why I use referenced request approach, in order to do a change in the login request I have to do it only in one (the original) and not twice (in this scenario, but in real life there are like 100 folders).
The problem I am having is that this actual scenario is veeeeeeeeeEeeery slow. First, Postman uses the API key to get all the collections, then searches for my specific collection and then grabs the specific request and uses it. This process is consuming a lot of time on my machine and due to performance tests, we need to shorten this time.
What I need: Is there a way to instead of Postman grabbing the collection via web, it grabs it via stored local files on the computer?
Thank you have a nice day.