Skip to content

Commit

Permalink
LPD-49785 Test Automation
Browse files Browse the repository at this point in the history
  • Loading branch information
chestofwonders committed Feb 28, 2025
1 parent 07f8dc8 commit 4ed4e29
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,16 @@ test('Check selection behavior', async ({page}) => {

await expect(page.getByText('15 of 75 Items Selected')).toBeVisible();
});

await test.step('Unselect all items using clear button', async () => {
await page.getByText('Clear').click();

await expect(itemsSelectorCheckbox).not.toBeChecked();

await expect(
page.getByText('15 of 75 Items Selected')
).not.toBeVisible();
});
});

accountSettingsTest(
Expand Down

0 comments on commit 4ed4e29

Please sign in to comment.