コード例 #1
0
        public override void RunTest()
        {
            header = new Header(selenium, this);
            footer = new Footer(selenium, this);
            homePage = new HomePage(selenium, this);
            categoryPage = new CategoryPage(selenium, this);
            productListPage = new ProductListPage(selenium, this);
            productPage = new ProductPage(selenium, this);
            signInPage = new SignInPage(selenium, this);
            createAccountPage = new CreateAccountPage(selenium, this);
            manageAccountPage = new ManageAccountPage(selenium, this);
            customer = createAccountPage.getCustomer();
            createAddressPage = new CreateAddressPage(customer, selenium, this);

            homePage.openBEHomePage();
            homePage.deleteCookies();
            homePage.openUSHomePage();
            homePage.deleteCookies();

            header.clickOnMyAccountLink_US_UK();
            signInPage.verifyCorrectPageIsDisplayed_US_UK();
            signInPage.clickCreateNewAccountLink();
            createAccountPage.verifyCorrectPageIsDisplayed_US_UK();
            createAccountPage.addCustomerInfo_US();
            manageAccountPage.verifyCorrectPageIsDisplayed_US_UK();
            manageAccountPage.clickAddAddressBtn_US_UK();
            createAddressPage.verifyCorrectPageIsDisplayed_US_UK(false);
            createAddressPage.checkPreferredBillingAddressBox();
            createAddressPage.addAddress_US();

            String userName = customer.getUserName();

            homePage.openBEHomePage();
            homePage.verifyDutchText();//Below was commented out because the other language pages are not up to speed with US.  Also for SSO this seems like redundancy.  Needs to test integration with MyGarmin etc for SSO (IMO)

            //header.verifyDutchText_CustomerLoggedIn(userName);
            /*
            footer.clickFrenchLanguageLink();
            homePage.verifyFrenchText();
            header.verifyFrenchText_CustomerLoggedIn(userName);
            footer.clickDutchLanguageLink();
            homePage.verifyDutchText();
            header.verifyDutchText_CustomerLoggedIn(userName);
            homePage.browseToCategoryOnTopMenu("du_On the Road");

            categoryPage.verifyDutchText();
            footer.clickFrenchLanguageLink();
            categoryPage.verifyFrenchText();
            footer.clickDutchLanguageLink();
            categoryPage.verifyDutchText();

            String du_subCategory = "du_Automotive";
            categoryPage.clickOnSubCategory(du_subCategory);
            productListPage.verifyDutchText(du_subCategory, "Draagtas");

            footer.clickFrenchLanguageLink();
            productListPage.verifyFrenchText("fr_Automotive", "Etui de protection");
            */
        }
コード例 #2
0
 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();
     createAddressPage = new CreateAddressPage(customer, selenium, this);
     testRegisterUser_US();
     //testRegisterUser_UK();
     //testRegisterUser_BE();  //look into language links later.
 }
コード例 #3
0
 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();
     createAddressPage = new CreateAddressPage(customer, selenium, this);
     testRegisterUser_US();
     //testRegisterUser_UK();
     //testRegisterUser_BE();  //look into language links later.
 }
コード例 #4
0
        public void testPurchase_US()
        {
            customer             = new Customer();
            homePage             = new HomePage(selenium, this);
            categoryPage         = new CategoryPage(selenium, this);
            productListPage      = new ProductListPage(selenium, this);
            productPage          = new ProductPage(selenium, this);
            cartPage             = new CartPage(selenium, this);
            signInPage           = new SignInPage(selenium, this);
            createAccountPage    = new CreateAccountPage(selenium, this);
            createAddressPage    = new CreateAddressPage(customer, selenium, this);
            deliveryOptionsPage  = new DeliveryOptionsPage(selenium, this);
            billingAndReviewPage = new BillingAndReviewPage(selenium, this);
            receiptPage          = new ReceiptPage(selenium, this);
            billingAddressPage   = new BillingAddressPage(selenium, this);

            homePage.openUSHomePage();
            homePage.deleteCookies();
            homePage.verifyCorrectPageIsDisplayed_US();
            homePage.browseToCategoryOnTopMenu("On the Road");

            categoryPage.clickOnSubCategory("Motorcycles");

            productListPage.clickProductLink("220");

            productPage.selectProductSku("zumo 220, North America");
            productPage.clickAddToCartButton();

            cartPage.verifyCorrectPageIsDisplayed();
            cartPage.clickCheckoutButton();

            signInPage.verifyCorrectPageIsDisplayed_US_UK();
            signInPage.clickCreateNewAccountLink();

            createAccountPage.verifyCorrectPageIsDisplayed_US_UK();
            createAccountPage.addCustomerInfo_US();

            createAddressPage.verifyCorrectPageIsDisplayed_US_UK(true);
            createAddressPage.addAddress_US();

            deliveryOptionsPage.verifyCorrectPageIsDisplayed();
            deliveryOptionsPage.clickContinueButton();

            billingAndReviewPage.verifyCorrectPageIsDisplayed();
            billingAndReviewPage.submitOrder();

            receiptPage.verifyCorrectPageIsDisplayed();
            receiptPage.verifyOrderNumberExists();
        }
コード例 #5
0
        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();
        }
コード例 #6
0
        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();
        }
コード例 #7
0
        public void testPurchase_US()
        {
            customer = new Customer();
            homePage = new HomePage(selenium, this);
            categoryPage = new CategoryPage(selenium, this);
            productListPage = new ProductListPage(selenium, this);
            productPage = new ProductPage(selenium, this);
            cartPage = new CartPage(selenium, this);
            signInPage = new SignInPage(selenium, this);
            createAccountPage = new CreateAccountPage(selenium, this);
            createAddressPage = new CreateAddressPage(customer, selenium, this);
            deliveryOptionsPage = new DeliveryOptionsPage(selenium, this);
            billingAndReviewPage = new BillingAndReviewPage(selenium, this);
            receiptPage = new ReceiptPage(selenium, this);
            billingAddressPage = new BillingAddressPage(selenium, this);

            homePage.openUSHomePage();
            homePage.deleteCookies();
            homePage.verifyCorrectPageIsDisplayed_US();
            homePage.browseToCategoryOnTopMenu("On the Road");

            categoryPage.clickOnSubCategory("Motorcycles");

            productListPage.clickProductLink("220");

            productPage.selectProductSku("zumo 220, North America");
            productPage.clickAddToCartButton();

            cartPage.verifyCorrectPageIsDisplayed();
            cartPage.clickCheckoutButton();

            signInPage.verifyCorrectPageIsDisplayed_US_UK();
            signInPage.clickCreateNewAccountLink();

            createAccountPage.verifyCorrectPageIsDisplayed_US_UK();
            createAccountPage.addCustomerInfo_US();

            createAddressPage.verifyCorrectPageIsDisplayed_US_UK(true);
            createAddressPage.addAddress_US();

            deliveryOptionsPage.verifyCorrectPageIsDisplayed();
            deliveryOptionsPage.clickContinueButton();

            billingAndReviewPage.verifyCorrectPageIsDisplayed();
            billingAndReviewPage.submitOrder();

            receiptPage.verifyCorrectPageIsDisplayed();
            receiptPage.verifyOrderNumberExists();
        }