https://cypress.io logo
I must be missing something. I am trying to write ...
# e2e-testing
l
I must be missing something. I am trying to write a password reset test. Our validation uses Firebase, and so the password reset link gets sent to the user email, I can get the link utilizing Mailosaur. However storing that link as a variable (as per Mailosuar's own documentation) and attempting to
cy.visit
it results in it getting tagged with the
baseUrl
. From what I've read, you're not supposed to navigate to external sites within the same test. It looks like there's the option to enable the experimental feature (
cy.origin
) but that seems like a lot. The other option I'm seeing is
cy.routing
but I'm not sure that's what I'm after. Does anyone here have practical experience with Mailosaur and navigating through an email link in one test?