public override void RunTest()
        {
            homePage             = new HomePage(selenium, this);
            header               = new Header(selenium, this);
            signInPage           = new SignInPage(selenium, this);
            createAccountPage    = new CreateAccountPage(selenium, this);
            manageAccountPage    = new ManageAccountPage(selenium, this);
            customer             = createAccountPage.getCustomer();
            shippingAddressPage  = new ShippingAddressPage(selenium, this);
            createAddressPage    = new CreateAddressPage(customer, selenium, this);
            categoryPage         = new CategoryPage(selenium, this);
            productListPage      = new ProductListPage(selenium, this);
            productPage          = new ProductPage(selenium, this);
            cartPage             = new CartPage(selenium, this);
            deliveryOptionsPage  = new DeliveryOptionsPage(selenium, this);
            billingAndReviewPage = new BillingAndReviewPage(selenium, this);
            receiptPage          = new ReceiptPage(selenium, this);

            testSingleSignOn_AddAddress();
            //testSingleSignOn_Checkout();
        }
        public override void RunTest()
        {
            homePage = new HomePage(selenium, this);
            header = new Header(selenium, this);
            signInPage = new SignInPage(selenium, this);
            createAccountPage = new CreateAccountPage(selenium, this);
            manageAccountPage = new ManageAccountPage(selenium, this);
            customer = createAccountPage.getCustomer();
            shippingAddressPage = new ShippingAddressPage(selenium, this);
            createAddressPage = new CreateAddressPage(customer, selenium, this);
            categoryPage = new CategoryPage(selenium, this);
            productListPage = new ProductListPage(selenium, this);
            productPage = new ProductPage(selenium, this);
            cartPage = new CartPage(selenium, this);
            deliveryOptionsPage = new DeliveryOptionsPage(selenium, this);
            billingAndReviewPage = new BillingAndReviewPage(selenium, this);
            receiptPage = new ReceiptPage(selenium, this);

            testSingleSignOn_AddAddress();
            //testSingleSignOn_Checkout();
        }