test linked rows works

This commit is contained in:
Matthias Mair 2024-04-17 22:10:20 +02:00
parent d79d062a66
commit c3b49cd2c0
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A

View File

@ -51,4 +51,9 @@ test('PUI - Pages - Part - Pricing', async ({ page }) => {
await page.getByText('Pie Chart').click();
await page.getByRole('button', { name: 'Quantity Not sorted' }).waitFor();
await page.getByRole('button', { name: 'Unit Price Not sorted' }).waitFor();
// BOM Pricing - linkjumping
await page.getByText('Wood Screw').waitFor();
await page.getByText('Wood Screw').click();
await page.waitForURL('**/part/98/pricing');
});