From a190b262a7e89524f8643e4abc3d9c5c84ec7334 Mon Sep 17 00:00:00 2001 From: atbucchi Date: Sat, 23 Mar 2024 20:55:46 +0000 Subject: [PATCH] Breaking on purpose --- cypress/integration/CAC-TAT.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/integration/CAC-TAT.spec.js b/cypress/integration/CAC-TAT.spec.js index b3611dec7..88b9b1870 100644 --- a/cypress/integration/CAC-TAT.spec.js +++ b/cypress/integration/CAC-TAT.spec.js @@ -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') }) @@ -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') }) }) @@ -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()