https://cypress.io logo
how can I find an object in an api response if I j...
# i-need-help
e
Not sure I fully understand the question, but you can use
cy.intercept
followed with
.then(resp)
to gather the response values from the
resp
n
e
You can use an
expect(resp.body).to.have.property('key', 'value');