HelloWorld.cy.ts 317 B

12345678910111213141516171819
  1. describe('Hello World', () => {
  2. it('changes language', () => {
  3. cy.visit('/')
  4. cy.contains('Hello, world!')
  5. cy.get('button').click()
  6. cy.contains('Tere, maailm!')
  7. cy.get('button').click()
  8. cy.contains('Hallo, verden!')
  9. cy.get('button').click()
  10. cy.contains('Hallo, Welt!')
  11. })
  12. })