```cy.getCookies({log: true}) .then(cookie...
# help
n
Copy code
cy.getCookies({log: true})
        .then(cookies => {
            const cookieNames = cookies.map(c => c.name);
            cy.preserveCookieOnce(...cookieNames);
            // Cypress.Cookies.preserveOnce(...cookieNames);
        }));
i do that but no dice either 😅