public void ThenIShouldSeeThatProductIsDeleted()
        {
            var currentCartItemCount = ShoppingCartPagePage.GetCartItemsCount();

            Assert.Less(currentCartItemCount, CartItemCount);
        }
        public void GivenISeeProductsListedOnThePage()
        {
            CartItemCount = ShoppingCartPagePage.GetCartItemsCount();

            Assert.Greater(CartItemCount, 0);
        }