cy.intercept(
{ method: 'POST',
url: //v1/users/passwords/reset, },
{} ).as('postResetPassword');
cy.intercept( { method: 'POST',
url: //v1/users/passwords/reset/, },
req => req.reply({ body: { message: 'See email' }, statusCode: 200 })
).as('postResetPassword');
i got error route continue operation
This thread is trying to answer question "How to resolve the 'route continue operation' error with Cypress intercept and is there a way to do the same thing with Playwright?"
Rayrun is a community for QA engineers. I am constantly looking for new ways to add value to people learning Playwright and other browser automation frameworks. If you have feedback, email [email protected].