Skip to content

Commit

Permalink
III-5845 - Fix create organizer e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
brampauwelyn committed Oct 12, 2023
1 parent 193e512 commit 11218ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/e2e/create-organizer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ test('create an organizer', async ({ baseURL, page }) => {
await page.getByRole('button', { name: 'Uploaden' }).click();
await page.getByText(${dummyOrganizer.image.copyright}`).click();

await page.getByRole('tab', { name: 'Locatie' }).click();
await page.getByRole('tab', { name: 'Adres' }).click();
await page.getByLabel('Gemeente').click();
await page.getByLabel('Gemeente').fill(dummyOrganizer.location.municipality);
await page.getByLabel(dummyOrganizer.location.municipality).click();
Expand Down

0 comments on commit 11218ff

Please sign in to comment.