I think your code should look a bit like this. ```...
# e2e-testing
m
I think your code should look a bit like this.
Copy code
js
cy.visit("www.toto.com")
cy.get("username").type("username")
cy.get("password").type("password")
cy.get("submitbutton").click()

cy.origin('www.titi.com', () => {
    // Now you can do stuff inside the login origin
    cy.get('h1').contains('ACME CORP')
})