Rayrun
← Back to Discord Forum

cypress to playwright

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?"

0 replies
TwitterGitHubLinkedIn
AboutQuestionsDiscord ForumBrowser ExtensionTagsQA Jobs

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].