Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RestAssured vs Postman automation Test in RESTful service

I tried writing tests in postman to validate the response in postman. Want to know what are all the limitations in postman testing and how it is compared to Rest Assured.

like image 750
Nita Avatar asked May 10 '17 22:05

Nita


1 Answers

Postman : Advantages:

  1. Easy to use, hence quick to learn.
  2. Can be used for
  3. Manual/Exploratory as well as Automation Testing. Easy to integrate in CI.

Disadvantages :

  1. Cannot customize reporting.
  2. Each collection can be provided with only 1 data file. Hence limitations when designing data driven automation framework.

Rest Assured: Advantages :

  1. Provides DSL so that the test are Behaviour driven.
  2. Java Library,hence the automation suite can be designed such that code can be reusable.
  3. More the reusability, Lesser is the maintainence cost.
  4. Can be used with any customised/open source reporting tool.
  5. No limitations while designing data-driven automation framework design. Can use excel or csv as data provider.
like image 139
PaChSu Avatar answered Sep 22 '22 19:09

PaChSu