Skip to content

Commit

Permalink
Fix playwright tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Aug 10, 2024
1 parent b4c5e60 commit e899c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/tests/pages/pui_index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ test('PUI - Pages - Index - Playground', async ({ page }) => {

// EditCategory
await page.getByRole('button', { name: 'Edit Category' }).click();
await page.locator('.css-fehojk-Input2').first().click();
await page.getByLabel('related-field-parent').click();
await page.getByText('Category 0').click();
await page
.getByLabel('Edit Category')
Expand All @@ -58,7 +58,7 @@ test('PUI - Pages - Index - Playground', async ({ page }) => {

// Create Part new Modal
await page.getByRole('button', { name: 'Create Part new Modal' }).click();
await page.locator('.css-fehojk-Input2').first().click();
await page.getByLabel('related-field-category').click();
await page.getByText('Category 0').click();
await page
.getByLabel('Create part')
Expand Down

0 comments on commit e899c85

Please sign in to comment.