When making a GET() is it Async or Sync call? | Rest Assured Forum
C
charles japhe Posted on 03/09/2019

waiting for HTTP Response is synchronous: it blocks the current thread until response is received.  So when using Rest_Assured, are the GET(), POST()  Sync or Async ?


A
Ashish Thakur Replied on 04/09/2019

These are Sync


C
charles japhe Replied on 04/09/2019

:)


S
srikanth Replied on 05/09/2019

Can we do async calls thru rest-assured??


C
charles japhe Replied on 06/09/2019

"Can we do async calls thru rest-assured??"

When using HTTP, all request/response are sync...

"waiting for HTTP Response is synchronous: "