예제 #1
0
        public void Checkout()
        {
            WelcomePage welcome = new WelcomePage();

            StorePage store = welcome.Login("*****@*****.**", "@nuK1978");

            Console.WriteLine("Login done");
            Console.WriteLine("add product to cart");
            Checkout shoppingCart = store.ShopProduct();

            shoppingCart.ClickCheckout();
            Console.WriteLine("Click checkout");
        }