I'm using cypress to automate testing at my panies' website, and upon logging in, clicking on any of the interactive elements immediately logs me out. however, this is only when I run it through cypress. manually clicking around still works. What could I do to fix this?
this is for a website built with javascript.
I expect the website to not log me out.
describe('signing in', function() {
it('Visits the safe and reliable sign-in page', function() {
cy.visit('/sign-in')
cy.get('[id="at-field-username_and_email"]').type('[email protected]')
cy.get('[id="at-field-password"]').type('******')
cy.contains('Sign In').click()
})
it('signs into the default entity', function(){
cy.get('[id="help-text-board"]').click({force:true})
cy.wait(9000)
})
})
I'm using cypress to automate testing at my panies' website, and upon logging in, clicking on any of the interactive elements immediately logs me out. however, this is only when I run it through cypress. manually clicking around still works. What could I do to fix this?
this is for a website built with javascript.
I expect the website to not log me out.
describe('signing in', function() {
it('Visits the safe and reliable sign-in page', function() {
cy.visit('https://testing.safeandreliable.care/sign-in')
cy.get('[id="at-field-username_and_email"]').type('[email protected]')
cy.get('[id="at-field-password"]').type('******')
cy.contains('Sign In').click()
})
it('signs into the default entity', function(){
cy.get('[id="help-text-board"]').click({force:true})
cy.wait(9000)
})
})
Share
Improve this question
asked Jun 13, 2019 at 14:42
Braeden CramerBraeden Cramer
611 silver badge3 bronze badges
4 Answers
Reset to default 4What you should know is that Cypress clears the state of browser every time it starts a new it()
. So something what is done in the first it()
is not now in the second it()
. In your case, the login is in the first it, in the second it the application is not logged in anymore. To take care that Cypress stays logged in, you should move the login step to a before()
or a beforeEach()
(depends wether you want to login once per describe or per every it.
Following your post it seems you like it to login once and stay logged in, so the before()
does the job for you. Your code would look like this:
describe('signing in', function() {
before('Logijn to the application', function() {
cy.visit('https://testing.safeandreliable.care/sign-in')
cy.get('[id="at-field-username_and_email"]').type('[email protected]')
cy.get('[id="at-field-password"]').type('******')
cy.contains('Sign In').click()
})
it('signs into the default entity', function(){
cy.get('[id="help-text-board"]').click({force:true})
cy.wait(9000)
})
it('next test', function () {
// do other test but still logged in
})
})
You need to add the following (among with the other changes proposed in https://stackoverflow./a/56593040/8928727):
beforeEach(() => {
Cypress.Cookies.preserveOnce('whatever session id')
})
If the above is missing you would still have your cookies deleted between tests, and in this case that's not what you want. Read more here: https://docs.cypress.io/api/cypress-api/cookies.html#Preserve-Once
Install this on your project's devDependencies:
npm i --save-dev cypress-localstorage-mands
Add this at the top of your Cypress' support file (in cypress/support/e2e.js
):
import "cypress-localstorage-mands"
In the cypress.config.js
file add this like:
module.exports = {
e2e: {
setupNodeEvents(on, config) {
require("cypress-localstorage-mands/plugin")(on, config)
return config
}
}
}
Then you need to add this in before
hook:
cy.clearLocalStorageSnapshot()
In beforeEach
hook:
cy.restoreLocalStorage()
At last add this in afterEach
hook:
cy.saveLocalStorage()
For details https://dev.to/javierbrea/how-to-preserve-localstorage-between-cypress-tests-19o1
Cypress 13 has session handling. With that you can solve the problem of using to much time, by logging in again and again.
I put this in a custom cypress mand to reuse it:
require('cypress-plugin-tab');
export function login() {
loginWith(Cypress.env('user'), Cypress.env('password'));
}
function loginWith(user, password) {
cy.session(
[user, password],
() => {
cy.visit('/auth/login');
cy.get('#user_name').type(user);
cy.get('#user_password').type(password);
cy.get('#user_login_submit').click();
cy.url().should('contain', '/main');
},
{
cacheAcrossSpecs: true,
},
);
}