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(); }
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(); }