Add category selection when starting pick lists

This commit is contained in:
beatz174-bit
2025-11-23 15:38:41 +10:00
parent 1efa5a161d
commit 81569e1124
3 changed files with 263 additions and 21 deletions
+12 -13
View File
@@ -1,37 +1,36 @@
import { expect, test } from '@playwright/test';
const areaName = 'Drinks';
const firstProduct = 'Mount Franklin 600ml';
const secondProduct = 'Mars Bar';
const chocolateProduct = 'Mars Bar';
const chipsProduct = 'Smiths Salt n Vinegar 90g';
const additionalProduct = 'Pump 750';
test.describe('Active pick list', () => {
test('allows creating a pick list and adding products without crashing', async ({ page }) => {
test('creates a pick list with category-prefilled items and adds more products', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('heading', { name: 'StockFill' })).toBeVisible();
await page.getByRole('link', { name: 'Create Pick List' }).click();
await page.getByLabel('Area').click();
await page.getByRole('option', { name: areaName }).first().click();
await page.getByLabel('Category (optional)').click();
await page.getByRole('option', { name: 'Chocolates' }).click();
await page.getByRole('checkbox', { name: 'Chips' }).click();
await page.getByRole('button', { name: 'Save Pick List' }).click();
await expect(page.getByRole('heading', { name: `${areaName} List` })).toBeVisible();
await expect(page.getByText(chocolateProduct).first()).toBeVisible();
await expect(page.getByText(chipsProduct).first()).toBeVisible();
const searchInput = page.getByPlaceholder('Search products');
await searchInput.click();
await searchInput.fill(firstProduct);
await searchInput.fill(additionalProduct);
await page
.getByRole('option', { name: new RegExp(`${firstProduct} \\(${areaName}\\)`, 'i') })
.getByRole('option', { name: new RegExp(`${additionalProduct} \\(${areaName}\\)`, 'i') })
.first()
.click();
await expect(page.getByText(firstProduct).first()).toBeVisible();
await expect(page.getByText(/Qty: 1 unit/i)).toBeVisible();
await searchInput.click();
await searchInput.fill(secondProduct);
await page.getByRole('option', { name: new RegExp(secondProduct, 'i') }).first().click();
await expect(page.getByText(secondProduct).first()).toBeVisible();
await expect(page.getByText(additionalProduct).first()).toBeVisible();
await expect(page.getByRole('button', { name: 'Save and Return' })).toBeEnabled();
});
});