Skip to content

Commit

Permalink
updated test fixture to click a voluntary reporter status
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner-ricks committed Oct 29, 2024
1 parent 8f852d3 commit 1042f88
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion e2e/fixtures/testFixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,10 @@ export const test = baseTest.extend<{
) => {
navigateToProvideFilingDetails;
await test.step('Provide filing details: navigate to Sign and submit', async () => {
await test.step('Provide filing details: fill out form', async () => {
await test.step('Provide filing details: fill out voluntary reporter', async () => {
await page.getByText('Voluntary reporter', { exact: true }).click();
});
await test.step('Provide filing details: fill out contact', async () => {
await page.getByLabel('First name').fill(pointOfContactJson.first_name);
await page.getByLabel('Last name').fill(pointOfContactJson.last_name);
await page
Expand Down

0 comments on commit 1042f88

Please sign in to comment.