Async Requests

In this lesson, we will learn how to handle async Requests for APIs.

What is an async request?

Synchronous request blocks the execution of server code until the response is received, whereas asynchronous request (async in short), does not block the execution and returns a callback to the client which can be used to receive the actual data once the execution is complete.

Handling async requests

REST Assured does not support async requests out of the box. We can automate these use cases using a ...