public void ThenIShouldSeeTheNumberIsIncreasedOnCartLogo()
        {
            var currentItemCountInCart = TodaysDealsPagePage.GetItemCountInCart();

            Assert.Greater(currentItemCountInCart, 0);
        }
        public void GivenISeeTitleOnThePage(string dealsAndPromotionsPageTitle)
        {
            var pageTitle = TodaysDealsPagePage.GetDealsAndPromotionsPageTitle();

            StringAssert.AreEqualIgnoringCase(dealsAndPromotionsPageTitle, pageTitle);
        }
 public void WhenIClickFirstButtonOnThePage()
 {
     TodaysDealsPagePage.ClickFirstAddToCartButton();
 }
 public void GivenIAmOnTheTodaySDealsPage()
 {
     TodaysDealsPagePage.GoToTodaysDealsPage();
 }