How to Test API

API automation testing should cover at least following testing methods apart from usual SDLC process Discovery testing: The test group should manually execute the set of calls documented in the API like verifying that a specific resource exposed by the API can be listed, created and deleted as appropriate Usability testing: This testing verifies whether the API… Continue reading How to Test API

Apache JMeter

The Apache JMeter™ application is open source software, a 100% pure Java application designed to load test functional behavior and measure performance. It was originally designed for testing Web Applications but has since expanded to other test functions. Apache JMeter may be used to test performance both on static and dynamic resources, Web dynamic applications.It can be… Continue reading Apache JMeter

What Is API Testing

APIs, or Application Programming Interfaces, are the connecting tissue between different systems or layers of an application. Applications often have three layers: a data layer, a service (API) layer, and a presentation (UI) layer. The API layer contains the business logic of an application – the rules of how users can interact with services, data,… Continue reading What Is API Testing

What is Unit Testing?

Unit testing is one of the software testing types which includes the initial testing phase where the smallest components or the modules of a software are tested individually. With this method of testing, both testers and developers can isolate each module, identify and fix the system defects at a very early stage of the software… Continue reading What is Unit Testing?

Field Validations- Recommended Improvements

 Is it a Text field ????????  Minimum Input Length  Maximum Input Length  Accepts Special Characters  Accepts Numeric/ Alphanumeric/ Character Input Can user Paste into the field  Can user can Copy the field.  Can Delete / Edit the Text Is it a numerical field ???????? Accepts Positive Input Not accepts Alphabets Character Input Not accepts Special… Continue reading Field Validations- Recommended Improvements