Pavel Voronin
Pavel Voronin

Reputation: 13993

Do ready solutions for Web API demonstrations (functional testing) exist?

We need to show the demo of our service.

It would be nice to have functionality allowing to script Fiddler or Postman

The example of scenario:
1) Create resource POST
2) Using the returned object, change some of its parameteres, issue PUT request.
3) ... and so on

It's easy to implement this either as simple console app or as JS web page. But this requires time and we also need some presentation capabilities: show formatted response, http status and other stuff like that. May be software for that purpose already exists...

Upvotes: 0

Views: 39

Answers (1)

Thomas Weller
Thomas Weller

Reputation: 11717

Maybe the Advanced REST Client for the Chrome Browser fits your needs.

Upvotes: 1

Related Questions