diff --git a/content/api/commands/session.md b/content/api/commands/session.md index 61e66e7d78..a9721260b0 100644 --- a/content/api/commands/session.md +++ b/content/api/commands/session.md @@ -29,12 +29,11 @@ Enabling this flag does the following: [`testIsolation=legacy`](/guides/core-concepts/writing-and-organizing-tests#Test-Isolation). - All active session data (cookies, `localStorage` and `sessionStorage`) across all domains are cleared. -- It overrides the - [`Cypress.Cookies.preserveOnce()`](/api/cypress-api/cookies#Preserve-Once) and - [`Cypress.Cookies.defaults()`](/api/cypress-api/cookies#Defaults) methods. -- Cross-origin navigation will no longer fail immediately, but instead, time out - based on [`pageLoadTimeout`](/guides/references/configuration#Timeouts). -- Tests will no longer wait on page loads before moving on to the next test. +- It supersedes + the [`Cypress.Cookies.preserveOnce()`](/api/cypress-api/cookies#Preserve-Once) and + [`Cypress.Cookies.defaults()`](/api/cypress-api/cookies#Defaults) methods. +- Cross-origin requests will now succeed, however, to interact with a + cross-origin page you must use a `cy.origin` block. Because the page is cleared at the beginning of each test, [`cy.visit()`](/api/commands/visit) must be explicitly called at the beginning