Skip to content

Commit

Permalink
Atualização ref. seção 12 - aula 48 - exercício extra 1
Browse files Browse the repository at this point in the history
  • Loading branch information
gilsongs committed Oct 23, 2023
1 parent d5824b6 commit 29c437e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
10 changes: 6 additions & 4 deletions cypress/integration/CAC-TAT.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ describe('Central de Atendimento ao Cliente TAT', function() {
cy.get('.error').should('not.be.visible')
})

it('campo telefone continua vazio quando preenchido com valor não-numérico', function() {
cy.get('#phone')
.type('abcdefghij')
.should('have.value', '')
Cypress._.times(3, function() {
it('campo telefone continua vazio quando preenchido com valor não-numérico', function() {
cy.get('#phone')
.type('abcdefghij')
.should('have.value', '')
})
})

it('exibe mensagem de erro quando o telefone se torna obrigatório mas não é preenchido antes do envio do formulário', function() {
Expand Down
12 changes: 7 additions & 5 deletions cypress/integration/privacy.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
it('testa a página da política de privacidade de forma independente', function() {
cy.visit('./src/privacy.html')

cy.contains('Talking About Testing').should('be.visible')
})
Cypress._.times(5, function() {
it('testa a página da política de privacidade de forma independente', function() {
cy.visit('./src/privacy.html')

cy.contains('Talking About Testing').should('be.visible')
})
})

0 comments on commit 29c437e

Please # to comment.