Created
May 1, 2022 03:35
-
-
Save nottyo/d46a6cc212938b64dd2f0a0e9fa739cf to your computer and use it in GitHub Desktop.
login-with-session
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cypress.Commands.add('lineLoginWithSession', (email, password) => { | |
// v2 with session cache | |
const args = { email, password }; | |
cy.intercept({ | |
method: 'POST', | |
url: 'https://api.line.me/oauth2/v2.1/token', | |
}).as('createToken'); | |
cy.session( | |
// use email, password as a session cache key | |
args, | |
() => { | |
cy.visit(Cypress.config('baseUrl')); | |
cy.get('[data-testid="login"]').click(); | |
cy.origin('https://access.line.me', { args }, ({ email, password }) => { | |
cy.get('input[type="text"]').type(email); | |
cy.get('input[type="password"]').type(password); | |
cy.get('button[type="submit"]').click(); | |
}); | |
// confirm that login is success! | |
cy.wait('@createToken').its('response.statusCode').should('eq', 200); | |
}, | |
{ | |
validate: () => { | |
const accessTokenKey = `LIFF_STORE:${Cypress.env('LIFF_ID')}:accessToken`; | |
expect(localStorage.getItem(accessTokenKey)).to.not.be.empty; | |
}, | |
}, | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment