Top "Rest-assured" questions

REST Assured is a Java library that provides a domain-specific language (DSL) for writing powerful, maintainable tests for RESTful APIs.

How do i send JsonObject with nested values as Post request in REST assured

I am using rest assured -https://code.google.com/p/rest-assured/wiki/Usage My JsonObject looks like this { "id": "12", "employeeInfo": …

http-post jsonobject rest-assured
In REST Assured, how do I set a timeout?

I'm using RestAssured 2.8.0 and I'm trying to set my own timeout (for gateway timeout), so if I don't get response …

java-8 httpclient rest-assured
Issue with i/o No serializer found for class org.json.JSONObject and no properties discovered to create BeanSerializer

not sure whats going on, the full error is: Problem with i/o No serializer found for class org.json.…

java json rest testng rest-assured
How do I access the underlying Jackson ObjectMapper in REST Assured?

I need to configure the underlying Jackson ObjectMapper in REST Assured. I am writing REST API tests using REST Assured …

java jackson rest-assured
testing spring boot rest application with restAssured

I've been struggling with this for some time now. I'd like to use restAssured to test my SpringBoot REST application. …

java spring rest spring-boot rest-assured
How to verify json array using rest assured?

I have a JSON response: ["alice", "jason", "steve", "alex"] then when use rest assured to test: when(). get("/names"). then(). …

rest-assured
Log restassured traffic

I'd like to know if there is a way of logging all the calls and responses (url + payload) processed by …

java http rest rest-assured
How to send form-data in api using Rest-assured

I want to send below as a form-data in API Body for a PUT request: Upload a file(KEY) with "…

java rest api automated-tests rest-assured
Full Json match with RestAssured

I'm using REST-Assured to test some API. My API clearly respond with a JSON and according to the doc if …

json rest rest-assured