Tag: apis
-
E2E Test 101 Guide: Beyond Unit Tests for Full Coverage
There is often a philosophical debate about whether to write a unit test or an e2e test 101. This has been a common question I have encountered many times – when limited in time and resources, what kind of testing should be done? Weighing up such factors can be difficult, especially given that usually only…
-
Exploring GraphQL 101: A Modern Approach to API Development
In recent years, GraphQL has gained significant traction as a powerful alternative to traditional RESTful APIs. Developed by Facebook, GraphQL offers a more flexible and efficient way to query and manipulate data. In this blog post, we will delve into the fundamentals of GraphQL 101, its advantages, and how to implement GraphQL APIs. Let’s first…
-
Writing a Potions Bank REST API with Spring Boot + MongoDB
This blog post provides a complete walkthrough of the process of building a RESTful API for Potions Bank using Spring Boot and MongoDB. We’ll cover the steps involved in setting up the development environment, creating necessary components, and integrating them to create a robust and scalable API. By the end of this tutorial, you will…
-
My journey of Automating Test Cases!
Hey! Testing keploy with postman APIs by making API calls and checking if the response is right or not (manually) is a frustrating task.🥱 I have been exploring different ways to automate testing. So, next time I don’t have to execute the same things again.🕵️♀️ Over the period of last few weeks, I have been exploring…
-
A Comprehensive Guide to REST API and Various API Architectures
In today’s interconnected world, Application Programming Interfaces (APIs) play a crucial role in enabling communication between different systems and applications. APIs define the protocols and rules for how software components should interact, allowing developers to build powerful and scalable applications. Among the various API architectures available, Representational State Transfer (REST) has gained significant popularity due…
-
Understanding Postman That Will Help you on Your Journey
What is Postman? Understanding Postman is a tool that allows us to build and easily work with APIs. Postman is used to build HTTP requests that we send to the server running the API. Getting started with Postman In order to know what kind of methods an API offers, we need to refer to the…
-
API Automation Testing : Pynt & Keploy
Pynt & Keploy : API automated testing is critical for product quality and CI/CD processes. Unlike GUI tests, API tests can cope with short release cycles and frequent changes — without breaking the test outputs. What is API testing? In software application development, API is the middle layer between the UI and the database layer.…
-
Fun Facts About APIs
Some amazing statistics facts about APIs Google Receives 5 Billion calls daily Twitter Receives 13 billion calls daily Facebook receives 5 billion calls daily Netflix receives 10 billion calls daily klout receives 1 billion calls daily 60% of eBay transactions are via their API 50% of salesforce transactions are from APIs Netflix API allows it…
-
Know about Record and Replay Testing
Automated testing makes the whole testing process easy and fast. Record and Replay testing make that process easier and quicker. Record and Replay, otherwise known as codeless automation, is a way to run tests without programming knowledge. Record and replay testing has been around for a while. People are now becoming more familiar with it,…
-
The Game of Shadow Testing: The Core of Test Generation
What is Shadow Testing? The term "Shadow Testing" has become necessary for tech companies nowadays as they have to keep their customers their priority. Rather than testing new features directly on all customers and then making adjustments based on their feedback, companies choose to first test these features on a small group of users. This…