You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys, first thing, I want to thanks for your work.
I having a problem: My project has multiple test cases that need to test, so I don't want to log in again and again between each test case when I do "cypress run". Every time my test log in that will waste 20 seconds just for nothing. Are we have any way to prevent cypress clear memory between each test and log in again when I do "cypress run"?
Desired behavior
Keep login between each test when do "cypress run". Thanks a lot.
Versions
Cypress 5.5
The text was updated successfully, but these errors were encountered:
Each test file will relaunch the browser and start from a clean state, so that each file can be run isolated, especially when run in parallel. This is by design.
If you wanted to stay logged in within a singular test file across several 'it' definitions, you can preserve cookies or localStorage. Options for saving cookies: https://on.cypress.io/cookies. Options for saving localStorage here: #461
Current behavior
Hi guys, first thing, I want to thanks for your work.
I having a problem: My project has multiple test cases that need to test, so I don't want to log in again and again between each test case when I do "cypress run". Every time my test log in that will waste 20 seconds just for nothing. Are we have any way to prevent cypress clear memory between each test and log in again when I do "cypress run"?
Desired behavior
Keep login between each test when do "cypress run". Thanks a lot.
Versions
Cypress 5.5
The text was updated successfully, but these errors were encountered: