public void ShoulbBePossibleToAddAndRemoveItemFromBasket()
        {
            const string searchValue = "Sewing Machine";

            ProductActions product = new ProductActions(_driver);

            product.GoToMainPageAndAcceptCookies();
            product.SearchForItemAndGoToItemPage(searchValue);
            product.AddProductAndGoToBasket("2");

            BasketActions basket = new BasketActions(_driver);

            basket.RemoveItemFromBasketAndClearCookies(searchValue);
        }