Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions playwright/UI/AdvisoriesTests.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
expect,
navigateToAdvisories,
getRowByName,
filterByName,
waitForTableLoad,
closePopupsIfExist,
} from 'test-utils';
Expand Down Expand Up @@ -68,6 +69,7 @@ test.describe('Advisories Tests', () => {
'true',
);
await waitForTableLoad(page);
await filterByName(page, system.name);
Copy link
Collaborator

@xbhouse xbhouse Feb 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you have a link handy to an example where this part of the test was failing? (nvm, i see your previous comment with a link in the other PR now 😃). the system filter is only on the systems tab, so that locator won't be found here 🤔

we are filtering by the system name already in the systems tab. there might be more than one system listed on that tab (maybe if they weren't cleaned up properly?), but since we're not checking the count anymore that should be fine

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

await expect(page.getByRole('row')).toHaveCount(2);

await page.getByRole('tab', { name: 'SystemsTab' }).click();
Expand Down
Loading