API Testing
Let's learn about the different utilities that let us test the functionality of our website's APIs.
We'll cover the following...
An Application Programming Interface (API) is a set of protocols, utilities and rules used in the creation of a functional application. Components in the application interact using APIs.
The concept of APIs applies to websites as well (e.g. client-server communication). Therefore, it only makes sense that we should test our APIs to make sure the backend of the web application works correctly. We don’t want users sending requests and not receiving a ...