-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(stage et cej): correction de test flaky (#2351)
- Loading branch information
1 parent
b0150b2
commit 285e914
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,9 @@ describe('Parcours formulaire cej', () => { | |
|
||
cy.findByRole('textbox', { name: /Prénom/i }).should('have.focus'); | ||
cy.findByRole('textbox', { name: /Prénom/i }).type('jean'); | ||
cy.findByRole('textbox', { name: /^Nom/i }).type('dupont'); | ||
// FIXME (BRUJ 22/11/2023): test flaky obligé de rajouter un .click() | ||
cy.findByRole('textbox', { name: /Nom/ }).click(); | ||
cy.findByRole('textbox', { name: /Nom/ }).type('dupont'); | ||
cy.findByRole('textbox', { name: /Adresse email/i }).type('[email protected]'); | ||
cy.findByRole('textbox', { name: /Téléphone/i }).type('0688552233'); | ||
// FIXME (GAFI 23-10-2023): Manque un circonflèxe par ici ... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters