Request Logging in REST Assured

Profile picture for user devraj

If you want to identify some issue in Request you can use request logging. Request logging can be done for headers, cookies, uri, request method, parameters as well as body. You can log each thing separately or all at once using .all().

Example:

public class DummyRestAPIExample 
{
	@BeforeClass
	public void setup()
	{
		RestAssured.baseURI = "http://dummy.restapiexample.com";
		RestAssured.basePath = "/api/v1";
	}
	
	@Test
	public void postMethodExample()
	{
		Response res = 
		given()
			.log()
//			.cookies()
//			.headers()
//			.body()
//			.parameters()
//			.method()
//			.uri()
			.all()
			.body("{" + 
					"\"name\":\"test\",\n" + 
					"\"salary\":\"123\",\n" + 
					"\"age\":\"23\"\n" + 
					"}")
		.when()
			.post("/create");
		
		System.out.println(res.body());
			
	}
}

Remove the comment to print log for each individual entity like cookies, headers etc. .all() will print logs for all.