Skip to content

Commit

Permalink
Breaking on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
atbucchi committed Mar 23, 2024
1 parent 3cef673 commit a190b26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/integration/CAC-TAT.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ describe('Central de Atendimento ao Cliente TAT', function() {

//Seção 4 - campos de seleção suspensa - exercicio 1
it('seleciona produto Youtube', function() {
cy.get('#product')
cy.get('product')
.select('youtube')
.should('have.value', 'youtube')
})
Expand Down Expand Up @@ -135,7 +135,7 @@ describe('Central de Atendimento ao Cliente TAT', function() {
cy.get('input[type="radio"]')
.should('have.length', 3)
.each(function($radio) {
cy.wrap($radio).check()
cy.wrap($radi).check()
cy.wrap($radio).should('be.checked')
})
})
Expand Down Expand Up @@ -183,7 +183,7 @@ describe('Central de Atendimento ao Cliente TAT', function() {
})

it('acessa a pagina da politica de privacidade removendo o target', function() {
cy.get('#privacy a')
cy.get('#privacy ')
.invoke('removeAttr', 'target')
.click()

Expand Down

0 comments on commit a190b26

Please sign in to comment.