Skip to content

Commit

Permalink
fix: Tests for E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjon3s authored and Mike-Heneghan committed Jan 17, 2024
1 parent 8892192 commit 7948267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/tests/ui-driven/src/globalHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export async function answerChecklist({
});
await expect(checklist).toBeVisible();
for (const answer of answers) {
await page.getByRole("button", { name: answer, exact: true }).click();
await page.getByLabel(answer, { exact: true }).click();
}
}

Expand Down

0 comments on commit 7948267

Please sign in to comment.