I have response:
<html>
<body>{"name":"test","value":"new","_id":"578641fec44c56220b15e5f9"}:</body>
</html>
I want to assert "name" using RestAssured body() method
I came up with this: .body("html.body", containsString("\"name\":\"test\"")).
Is there a way to do it more elegant using body()?