Files
nssheung/School-Management-System/test/E2E/cypress/e2e/helloworld/teacher-login.cy.js
louiscklaw 6da7dca3e7 update,
2025-02-01 02:04:37 +08:00

25 lines
517 B
JavaScript

Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})
describe('example to-do app', () => {
beforeEach(() => {
cy.visit('http://localhost:8000/sign-in')
})
it('can login and logout', () => {
cy.get(':nth-child(2) > .form-control').type('[email protected]')
cy.get(':nth-child(3) > .form-control').type('teacher1')
cy.get('.btn').click()
cy.wait(1000)
cy.get('.d-sm-inline').click()
})
})