Cypress - cache #15043
Unanswered
faprile
asked this question in
Questions and Help
Cypress - cache
#15043
Replies: 1 comment 1 reply
-
can Cypress clear browser cookie/cache before each test? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everybody,
can Cypress clear browser cookie/cache before each test?
I have this problem:
the first execution is ok, but the second fails due to the cache.
I tried this cy.clearCookies(), but doesn't work:
`import login from '../pageObjects/login'
import logout from '../pageObjects/logout'
import logged from '../pageObjects/logged'
describe('Login', () => {
})
it('Logout', () => {
const out = new logout();
const lged = new logged();
})`
Beta Was this translation helpful? Give feedback.
All reactions