Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}

<div class="govuk-button-group">
<govuk-button type="submit">Send email</govuk-button>
<govuk-button type="submit">Confirm</govuk-button>
<govuk-button type="submit" name="Cancel" value="true" class="govuk-button--secondary">Cancel</govuk-button>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down
Loading