Skip to content

Commit

Permalink
test(stage et cej): correction de test flaky (#2351)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliebrunetto83 authored Nov 23, 2023
1 parent b0150b2 commit 285e914
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion cypress/e2e/formulaire_cej.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ...
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/formulaire_depot_stage.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ describe('Dépôt de Stage', () => {
});

// FIXME (GAFI 06-11-2023): Devrait être combobox
// Also besoin de type 2x parce que la lib est cassée
cy.findByRole('textbox', { name: /Pays/i }).type('France');
// NOTE (BRUJ 22/11/2023): test flaky obligé de rajouter un click en amont
cy.findByRole('textbox', { name: /Pays/ }).click();
cy.findByRole('textbox', { name: /Pays/i }).type('France');
cy.findAllByRole('option').first().click();
cy.findByRole('textbox', { name: /Ville/i }).type(aFormulaireEtapeLocalisation().ville);
Expand Down

0 comments on commit 285e914

Please sign in to comment.