0

Automating API's:

How to automate API testing without using any third party tools?

  1. IDE's required? Choice is Eclipse.
  2. Java - Choice of programming language.
  3. Suggest Integration required if any?
  4. Suggestions on Framework approach/Methodology required?
  5. Reporting Integrations/Ideas required?

Thank you in Advance !

Bharadwaj Pendyala
  • 317
  • 1
  • 3
  • 16

1 Answers1

0

Use Java + jUnit. Just send HTTP requests and check their response in your test. To make it all as tests use jUnit framework.

Community
  • 1
  • 1
Denis Koreyba
  • 2,665
  • 1
  • 25
  • 45
  • Hi Denis, Appreciate your reply. Could you please elaborate on sending requests capturing schemas and validating responses? – Bharadwaj Pendyala Feb 08 '17 at 17:18
  • I'm not into Java. But I guess this http://stackoverflow.com/questions/6153283/get-http-code-from-org-apache-http-httpresponse and this http://stackoverflow.com/questions/6467848/how-to-get-http-response-code-for-a-url-in-java will help you. Thanks a lot for marking the answer as the best one! – Denis Koreyba Feb 09 '17 at 09:03
  • :) Thank you for the help ! – Bharadwaj Pendyala Feb 09 '17 at 09:10