public void contact_enterprise_edit_should_update_his_stage_if_id_is_valid()
        {
            const string NEW_RESPONSABLE_NAME = "Ticoune";


            LoginPage.GoToByUrl();
            LoginPage.LoginAs(ContactEnterpriseUsername, ContactEnterprisePassword);

            EditStagePage.GoToByUrl();
            EditStagePage.EditAStage(NEW_RESPONSABLE_NAME);

            ListStageContactEnterprisePage.IsDisplayed.Should().BeTrue();
            EditStagePage.EditVerification(NEW_RESPONSABLE_NAME).Should().BeTrue();
        }
        public void contact_enterprise_not_should_be_able_to_edit_his_profil_if_not_logged_in()
        {
            EditStagePage.GoToByUrl();

            LoginPage.IsDisplayed.Should().BeTrue();
        }