Skip to content

Commit 70c1f43

Browse files
GX-390 test(ElementsButtons): Intentando mostrar que el CI es correcto
1 parent 6afea9b commit 70c1f43

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

cypress/e2e/Tests/Elements/GX3-390-ElementsButtons.cy.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ describe('⚡️ToolsQA | Elements | Buttons', () => {
2323
cy.wait(2000);
2424
});
2525
it('392 | TC3: Validar hacer click en el botón de click', () => {
26-
cy.get('.mt-4 > button').eq(1).click().should('exist').and('have.attr', 'type', 'button').and('contain.text', 'Me');
26+
cy.get('.mt-4 > button')
27+
.eq(1)
28+
.click()
29+
.should('exist')
30+
.and('have.attr', 'type', 'button')
31+
.and('contain.text', 'Me')
32+
.and('not.equal', 'double');
2733
});
2834
});

0 commit comments

Comments
 (0)