Description
Code
test("Add item to cart", async ({ page, loginPage }) => {
const add = new AddItem(page);
await add.addItem();
await expect(page.locator(".shopping_cart_badge")).toBeVisible();
await page.waitForTimeout(3000);
});