Ejemplo n.º 1
0
        public void ThenSearchTheSecondProduct()
        {
            SearchProductPageObject page = new SearchProductPageObject();

            page.TxtSearch.SendKeys("Alienware Aw3418DW");
            page.BtnSearch.Click();
        }
Ejemplo n.º 2
0
        public void ThenAddToTheCartTheSecondProduct()
        {
            SearchProductPageObject page1 = new SearchProductPageObject();

            page1.LinkDisplay.Click();
            page1.BtnAddtoCart.Click();
        }
Ejemplo n.º 3
0
        public void GivenSearchTheFirstProduct()
        {
            SearchProductPageObject page = new SearchProductPageObject();

            page.TxtSearch.SendKeys("Samsung Galaxy S9 64GB");
            page.BtnSearch.Click();
        }
Ejemplo n.º 4
0
        public void SearchProduct(string product)
        {
            SearchProductPageObject page = new SearchProductPageObject();

            page.TxtSearch.SendKeys(product);
            page.BtnSearch.Click();
        }
Ejemplo n.º 5
0
        public void Test3()
        {
            SearchProduct("Samsung Galaxy S9 64GB");
            SearchProductPageObject page3 = new SearchProductPageObject();
            string PriceSelected          = page3.Price.Text;

            Console.WriteLine("Price Selected: " + PriceSelected);
            string WholeP = page3.PriceFraction.Text;

            Console.WriteLine("Price Fraction: " + WholeP);
            WholePrice = "$" + PriceSelected + "." + WholeP;
            Console.WriteLine("Price Selected: " + WholePrice);
            page3.ProductSelected.Click();
            string ActualPriceS = page3.ActualPrice.Text;

            Console.WriteLine("Detail Price: " + ActualPriceS);
            SetUp.VAsserts(WholePrice, ActualPriceS);
            page3.BtnAddtoCart.Click();
            String PriceCart1 = page3.PriceCart.Text;

            Console.WriteLine("Price into the Cart: " + PriceCart1);
            SetUp.VAsserts(WholePrice, PriceCart1);
            CartPageObject page          = new CartPageObject();
            string         AmountProduct = page.AmountProducts.Text;

            Console.WriteLine("Amount of products into the Cart: " + AmountProduct);
            string ExpectedText = "1 producto en tu carrito";

            SetUp.VAsserts(AmountProduct, ExpectedText);
        }
Ejemplo n.º 6
0
        public void Test6()
        {
            SearchProductPageObject page1 = new SearchProductPageObject();

            page1.LinkDisplay.Click();
            page1.BtnAddtoCart.Click();
            CartPageObject page2         = new CartPageObject();
            string         AmountProduct = page2.AmountProducts.Text;

            Console.WriteLine("Amount of products into the Cart: " + AmountProduct);
            string ExpectedText = "2 productos en tu carrito";

            SetUp.VAsserts(AmountProduct, ExpectedText);
            page2.BtnCarrito.Click();
            CleanCartPageObject page = new CleanCartPageObject();

            page.DeleteDisplay.Click();
            page.BtnCarrito.Click();
            page.DeletePhone.Click();
        }
Ejemplo n.º 7
0
        public void ThenCompareThePrices()
        {
            SearchProductPageObject page = new SearchProductPageObject();
            string PriceSelected         = page.Price.Text;

            Console.WriteLine("Price Selected: " + PriceSelected);
            string WholeP = page.PriceFraction.Text;

            Console.WriteLine("Price Fraction: " + WholeP);
            WholePrice = "$" + PriceSelected + "." + WholeP;
            Console.WriteLine("Price Selected: " + WholePrice);
            page.ProductSelected.Click();
            string ActualPriceS = page.ActualPrice.Text;

            Console.WriteLine("Detail Price: " + ActualPriceS);
            SetUp.VAsserts(WholePrice, ActualPriceS);
            page.BtnAddtoCart.Click();
            String PriceCart1 = page.PriceCart.Text;

            Console.WriteLine("Price into the Cart: " + PriceCart1);
            SetUp.VAsserts(WholePrice, PriceCart1);
        }