From 1351195e434b01d7844fa65bbe8134c3f96fa0d9 Mon Sep 17 00:00:00 2001 From: James Gunn Date: Wed, 29 Apr 2026 12:21:43 +0100 Subject: [PATCH] Change 'Send email' button to 'Confirm' --- .../SupportTasks/OneLoginUserMatching/Resolve/NoMatches.cshtml | 2 +- .../SupportTasks/OneLoginUserIdVerificationTests.cs | 2 +- .../SupportTasks/OneLoginUserRecordMatchingTests.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/Pages/SupportTasks/OneLoginUserMatching/Resolve/NoMatches.cshtml b/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/Pages/SupportTasks/OneLoginUserMatching/Resolve/NoMatches.cshtml index f383aca9bb..4c6b000762 100644 --- a/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/Pages/SupportTasks/OneLoginUserMatching/Resolve/NoMatches.cshtml +++ b/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/Pages/SupportTasks/OneLoginUserMatching/Resolve/NoMatches.cshtml @@ -32,7 +32,7 @@ }
- Send email + Confirm Cancel
diff --git a/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserIdVerificationTests.cs b/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserIdVerificationTests.cs index 936b3720aa..7c152fcd3f 100644 --- a/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserIdVerificationTests.cs +++ b/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserIdVerificationTests.cs @@ -65,7 +65,7 @@ public async Task VerifyAndNoMatch() await page.ClickContinueButtonAsync(); await page.WaitForUrlPathAsync($"/support-tasks/one-login-user-matching/{supportTask.SupportTaskReference}/resolve/no-matches"); - await page.ClickButtonAsync("Send email"); + await page.ClickButtonAsync("Confirm"); await page.WaitForUrlPathAsync("/support-tasks/one-login-user-matching/id-verification"); } diff --git a/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserRecordMatchingTests.cs b/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserRecordMatchingTests.cs index bde453c8dd..fd4a183dc9 100644 --- a/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserRecordMatchingTests.cs +++ b/TeachingRecordSystem/tests/TeachingRecordSystem.SupportUi.EndToEndTests/JourneyTests/SupportTasks/OneLoginUserRecordMatchingTests.cs @@ -54,7 +54,7 @@ public async Task NoMatch() await page.ClickAsync($"a{TextIsSelector($"{firstName} {lastName}")}"); await page.WaitForUrlPathAsync($"/support-tasks/one-login-user-matching/{supportTask.SupportTaskReference}/resolve/no-matches"); - await page.ClickButtonAsync("Send email"); + await page.ClickButtonAsync("Confirm"); await page.WaitForUrlPathAsync("/support-tasks/one-login-user-matching/record-matching"); }