Testing Purpose

Software testing is a process of evaluating and verifying that a software application or system meets specified requirements and works correctly. The primary purpose of software testing is to identify defects, errors, or bugs in the software and ensure that it functions as intended. Testing is an essential part of the software development life cycle… Continue reading Testing Purpose

Integration: API Testing using Postman

Creating a request via postman for testing APIs – Using API Key Open an new request window in Postman select the request type: GET,POST,PUT,DELETE Provide the API url Select “No Auth” in Authorization” subtab In Headers subtab, add key as “Authorization” and value as “Bearer APIKeyvalue” (replace APIKeyvalue with key provided by client) Click send… Continue reading Integration: API Testing using Postman