Reputation: 8641
I'm currently using POSTMAN and Advanced Rest Client application to test my REST endpoints. These tool are great and make it very nice for testing. I am currently entering these calls manually and testing. However, I have a number of endpoints which have prerequisite calls that need to be made to handle their dependencies.
This is not a big deal, however if there is a way I can chain these calls to run in a certain flow waiting for the prerequisite to be completed before running the next I could harshness this to craft a fully automated API testing suite. Which, would give more flexibility rather than manually entering them.
Upvotes: 0
Views: 338
Reputation: 39942
Postman let's you do this using the Jetpacks upgrade. You can then use the recently released Newman tool to run them through the command line.
Upvotes: 1