I'm intercepting a request multiple time in request. They are basically all the same but got differences in some response's objects. Cypress always uses the 1st intercepted request and I need to use the second or third. Any way to do it? I tried putting the interception closer to the event but there might be another way
cy.intercept({
method: 'PUT',
url: urlResponse,
}).as('Response');