Skip to content

Commit

Permalink
Update locator
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Sep 26, 2023
1 parent e97c7bf commit 0e4b88b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/e2e/create-organizer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ test('create an organizer', async ({ baseURL, page }) => {

await page.getByRole('tab', { name: 'Contact' }).click();
await page.getByRole('button', { name: 'Contactgegevens toevoegen' }).click();
await page.locator('#contact-info-value').click();
await page.locator('#contact-info-value').fill(dummyOrganizer.email);
await page.locator('#contact-info-value').blur();
await page.getByTestId('contact-info-value').click();
await page.getByTestId('contact-info-value').fill(dummyOrganizer.email);
await page.getByTestId('contact-info-value').blur();

await page.getByRole('tab', { name: 'Labels' }).click();
await page.getByLabel('Verfijn met labels').click();
Expand Down

0 comments on commit 0e4b88b

Please sign in to comment.