From f0b2a04746237d85009dc444cf6b56cbd11642fb Mon Sep 17 00:00:00 2001
From: Johan Girod <johan.girod@beta.gouv.fr>
Date: Thu, 31 Mar 2022 17:44:00 +0200
Subject: [PATCH] Fix end 2 end test

---
 .../mon-entreprise/simulateur-salarie.js        | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/site/cypress/integration/mon-entreprise/simulateur-salarie.js b/site/cypress/integration/mon-entreprise/simulateur-salarie.js
index 0381286b7..dffc5be97 100644
--- a/site/cypress/integration/mon-entreprise/simulateur-salarie.js
+++ b/site/cypress/integration/mon-entreprise/simulateur-salarie.js
@@ -33,21 +33,18 @@ describe('Simulateur salarié', function () {
 		})
 
 		it('should permit customizing the number of worked hours and clear the input value', function () {
-			cy.get(
-				'#contrat\\ salarié\\ \\.\\ temps\\ de\\ travail\\ \\.\\ temps\\ partiel\\ \\.\\ heures\\ par\\ semaine'
-			).type(25)
+			cy.contains('Voir ma situation').click()
+
+			cy.contains('Heures par semaine').next().find('button').click()
+			cy.focused().type(25)
+			cy.wait(500)
+			cy.contains('Fermer').click()
+
 			cy.get(
 				'#contrat\\ salarié\\ \\.\\ rémunération\\ \\.\\ net\\ après\\ impôt'
 			).should(($input) => {
 				expect(+$input.val().replace(/[\s,.€]/g, '')).to.be.below(1000)
 			})
-
-			cy.focused().clear()
-			cy.get(
-				'#contrat\\ salarié\\ \\.\\ rémunération\\ \\.\\ net\\ après\\ impôt'
-			).should(($input) => {
-				expect(+$input.val().replace(/[\s,.€]/g, '')).to.be.above(1000)
-			})
 		})
 	})
 })