Page Objects

Learn how to use the BELLATRIX page objects.

Introduction

As you most probably noticed this is like the 4th time we use almost the same elements and logic inside our tests. Similar test writing approach leads to unreadable and hard to maintain tests. Because of that people use the so called Page Object design pattern to reuse their elements and pages’ logic. BELLATRIX comes with powerful built-in page objects which are much more readable and maintainable than regular vanilla WebDriver ones.

Non-page-object Test Example

[Test]
public void PurchaseRocketWithoutPageObjects()
{
    App.Navigation.Navigate("http://demos.bellatrix.solutions/");

    // Home page elements
    Select sortDropDown = App.Components.CreateByNameEndingWith<Select>("orderby");
    Anchor protonMReadMoreButton = App.Components.CreateByInnerTextContaining<Anchor>("Read more");
    Anchor addToCartFalcon9 = App.Components.CreateByAttributesContaining<Anchor>("data-product_id", "28").ToBeClickable();
    Anchor viewCartButton = App.Components.CreateByClassContaining<Anchor>("added_to_cart wc-forward").ToBeClickable();

    // Home Page actions
    sortDropDown.SelectByText("Sort by price: low to high");
    protonMReadMoreButton.Hover();
    addToCartFalcon9.Focus();
    addToCartFalcon9.Click();
    viewCartButton.Click();

    // Cart page elements
    TextField couponCodeTextField = App.Components.CreateById<TextField>("coupon_code");
    Button applyCouponButton = App.Components.CreateByValueContaining<Button>("Apply coupon");
    Div messageAlert = App.Components.CreateByClassContaining<Div>("woocommerce-message");
    Number quantityBox = App.Components.CreateByClassContaining<Number>("input-text qty text");
    Button updateCart = App.Components.CreateByValueContaining<Button>("Update cart").ToBeClickable();
    Span totalSpan = App.Components.CreateByXpath<Span>("//*[@class='order-total']//span");
    Anchor proceedToCheckout = App.Components.CreateByClassContaining<Anchor>("checkout-button button alt wc-forward");

    // Cart page actions
    couponCodeTextField.SetText("happybirthday");
    applyCouponButton.Click();
    messageAlert.ToHasContent().ToBeVisible().WaitToBe();
    messageAlert.ValidateInnerTextIs("Coupon code applied successfully.");

    quantityBox.SetNumber(0);
    quantityBox.SetNumber(2);
    updateCart.Click();
    totalSpan.ValidateInnerTextIs("95.00€", 15000);
    proceedToCheckout.Click();

    // Checkout page elements
    Heading billingDetailsHeading = App.Components.CreateByInnerTextContaining<Heading>("Billing details");
    Anchor showLogin = App.Components.CreateByInnerTextContaining<Anchor>("Click here to login");
    TextArea orderCommentsTextArea = App.Components.CreateById<TextArea>("order_comments");
    TextField billingFirstName = App.Components.CreateById<TextField>("billing_first_name");
    TextField billingLastName = App.Components.CreateById<TextField>("billing_last_name");
    TextField billingCompany = App.Components.CreateById<TextField>("billing_company");
    Select billingCountry = App.Components.CreateById<Select>("billing_country");
    TextField billingAddress1 = App.Components.CreateById<TextField>("billing_address_1");
    TextField billingAddress2 = App.Components.CreateById<TextField>("billing_address_2");
    TextField billingCity = App.Components.CreateById<TextField>("billing_city");
    Select billingState = App.Components.CreateById<Select>("billing_state").ToBeVisible().ToBeClickable();
    TextField billingZip = App.Components.CreateById<TextField>("billing_postcode");
    Phone billingPhone = App.Components.CreateById<Phone>("billing_phone");
    Email billingEmail = App.Components.CreateById<Email>("billing_email");
    CheckBox createAccountCheckBox = App.Components.CreateById<CheckBox>("createaccount");
    RadioButton checkPaymentsRadioButton = App.Components.CreateByAttributesContaining<RadioButton>("for", "payment_method_cheque");

    // Checkout page actions
    billingDetailsHeading.ToBeVisible().WaitToBe();
    showLogin.ValidateHrefIs("http://demos.bellatrix.solutions/checkout/#");
    showLogin.ValidateCssClassIs("showlogin");
    orderCommentsTextArea.ScrollToVisible();
    orderCommentsTextArea.SetText("Please send the rocket to my door step! And don't use the elevator, they don't like when it is not clean...");
    billingFirstName.SetText("In");
    billingLastName.SetText("Deepthought");
    billingCompany.SetText("Automate The Planet Ltd.");
    billingCountry.SelectByText("Bulgaria");
    billingAddress1.ValidatePlaceholderIs("House number and street name");
    billingAddress1.SetText("bul. Yerusalim 5");
    billingAddress2.SetText("bul. Yerusalim 6");
    billingCity.SetText("Sofia");
    billingState.SelectByText("Sofia-Grad");
    billingZip.SetText("1000");
    billingPhone.SetPhone("+00359894646464");
    billingEmail.SetEmail("info@bellatrix.solutions");
    createAccountCheckBox.Check();
    checkPaymentsRadioButton.Click();
}

How to Create BELLATRIX Page Object

  • On most pages, you need to define elements. Placing them in a single place makes the changing of the locators easy. It is a matter of choice whether to have action methods or not. If you use the same combination of same actions against a group of elements then it may be a good idea to wrap them in a page object action method. In our example, we can wrap the filling the billing info such a method.
  • In the assertions file, we may place some predefined ensure methods. For example, if you always check the same email or title of a page, there is no need to hardcode the string in each test. Later if the title is changed, you can do it in a single place. The same is true about most of the things you can assert in your tests.

Page Object Example

Actions File

public partial class CartPage : WebPage
{
    private const string CouponSuccessfullyAdded = @"Coupon code applied successfully.";

    public override string Url => "http://demos.bellatrix.solutions/cart/";

    public void ApplyCoupon(string coupon)
    {
        CouponCode.SetText(coupon);
        ApplyCouponButton.Click();
        MessageAlert.ToHasContent().ToBeVisible().WaitToBe();

        MessageAlert.ValidateInnerTextIs(CouponSuccessfullyAdded);
    }

    public void UpdateProductQuantity(int productNumber, int newQuantity)
    {
        if (productNumber > QuantityBoxes.Count())
        {
            throw new ArgumentException("There are less added items in the cart. Please specify smaller product number.");
        }

        App.Browser.WaitUntilReady();
        QuantityBoxes[productNumber - 1].SetNumber(0);
        QuantityBoxes[productNumber - 1].SetNumber(newQuantity);
        UpdateCart.Click();
    }

    public void UpdateAllProductsQuantity(int newQuantity)
    {
        if (QuantityBoxes.Any())
        {
            throw new ArgumentException("There are no items to be updated.");
        }

        foreach (var currentQuantityBox in QuantityBoxes)
        {
            currentQuantityBox.SetNumber(0);
            currentQuantityBox.SetNumber(newQuantity);
        }

        UpdateCart.Click();
    }
}

Map File

public partial class CartPage
{
    public TextField CouponCode => App.Components.CreateById<TextField>("coupon_code");
    public Button ApplyCouponButton => App.Components.CreateByValueContaining<Button>("Apply coupon");
    public Div MessageAlert => App.Components.CreateByClassContaining<Div>("woocommerce-message");
    public ComponentsList<Number> QuantityBoxes => App.Components.CreateAllByClassContaining<Number>("input-text qty text");
    public Button UpdateCart => App.Components.CreateByValueContaining<Button>("Update cart").ToBeClickable();
    public Span TotalSpan => App.Components.CreateByXpath<Span>("//*[@class='order-total']//span");
    public Anchor ProceedToCheckout => App.Components.CreateByClassContaining<Anchor>("checkout-button button alt wc-forward");
}

Assertions File

public partial class CartPage
{
    public void AssertTotalPrice(string price)
    {
        TotalSpan.ValidateInnerTextIs($"{price}€", 15000);
    }
}

Page Object Example Explanations

public partial class CartPage : WebPage

All BELLATRIX page objects are implemented as partial classes which means that you have separate files for different parts of it; actions, elements, assertions but at the end, they are all built into a single type. This makes the maintainability and readability of these classes much better. Also, you can easier locate what you need.

public override string Url => "http://demos.bellatrix.solutions/cart/";

Overriding the Url property that comes from the base page object so you can later use the Open method to go to the page.

public void ApplyCoupon(string coupon)
{
    CouponCode.SetText(coupon);
    ApplyCouponButton.Click();
    MessageAlert.ToHasContent().ToBeVisible().WaitToBe();
    
    MessageAlert.ValidateInnerTextIs(CouponSuccessfullyAdded);
}

These elements are always used together when coupon is applied. There are many test cases where you need to apply different coupons and so on. This way you reuse the code instead of copy-paste it. If there is a change in the way how the coupon is applied, change the workflow only here. Only single line of code is changed in your tests. Usually, it is not entirely correct to make assertions inside action methods. However, ensure methods are just waiting for something to happen.

public void UpdateProductQuantity(int productNumber, int newQuantity)
{
    if (productNumber > QuantityBoxes.Count())
    {
        throw new ArgumentException("There are less added items in the cart. Please specify smaller product number.");
    }

    App.Browser.WaitUntilReady();
    QuantityBoxes[productNumber - 1].SetNumber(0);
    QuantityBoxes[productNumber - 1].SetNumber(newQuantity);
    UpdateCart.Click();
}

Another method that we can add here is the one for updating the quantity of a product. This is an excellent place to put validations in your code. Here we make sure that the specified number of products that we want to update exists. CreateAll method returns a special BELLATRIX collection called ComponentsList, in this case ElementList. The collection has a couple of useful methods; Count, implements index which we use here.

foreach (var currentQuantityBox in QuantityBoxes)
{
    currentQuantityBox.SetNumber(0);
    currentQuantityBox.SetNumber(newQuantity);
}

Also, you can use ComponentsList directly in foreach statements since it implements IEnumerator interface.

public TextField CouponCode => App.Components.CreateById<TextField>("coupon_code");

All elements are placed inside the file PageName.Elements so that the declarations of your elements are in a single place. It is convenient since if there is a change in some of the locators or elements types you can apply the fix just here. All elements are implementations as properties. Here we use the short syntax for declaring properties, but you can always use the old one. App.Components property is actually a shorter version of ComponentCreateService.

public ComponentsList<Number> QuantityBoxes => App.Components.CreateAllByClassContaining<Number>("input-text qty text");

If you want to find multiple elements, you can use the special BELLATRIX collection ComponentsList. You can read more about it in the actions file.

public void AssertTotalPrice(string price)
{
    TotalSpan.ValidateInnerTextIs($"{price}€", 15000);
}

With this Assert, reuse the formatting of the currency and the timeout. Also, since the method is called from the page it makes your tests a little bit more readable. If there is a change what needs to be checked –> for example, not span but different element you can change it in a single place.

Page Object Test Example

[Test]
public void PurchaseRocketWithPageObjects()
{
    var homePage = App.GoTo<HomePage>();

    homePage.FilterProducts(ProductFilter.Popularity);
    homePage.AddProductById(28);
    homePage.ViewCartButton.Click();

    var cartPage = App.Create<CartPage>();

    cartPage.ApplyCoupon("happybirthday");
    cartPage.UpdateProductQuantity(1, 2);
    cartPage.AssertTotalPrice("95.00");
    cartPage.ProceedToCheckout.Click();

    var billingInfo = new BillingInfo
                          {
                              FirstName = "In",
                              LastName = "Deepthought",
                              Company = "Automate The Planet Ltd.",
                              Country = "Bulgaria",
                              Address1 = "bul. Yerusalim 5",
                              Address2 = "bul. Yerusalim 6",
                              City = "Sofia",
                              State = "Sofia-Grad",
                              Zip = "1000",
                              Phone = "+00359894646464",
                              Email = "info@bellatrix.solutions",
                              ShouldCreateAccount = true,
                              OrderCommentsTextArea = "cool product",
                          };

    var checkoutPage = App.Create<CheckoutPage>();
    checkoutPage.FillBillingInfo(billingInfo);
    checkoutPage.CheckPaymentsRadioButton.Click();
}

Page Object Test Example Explanations

var homePage = App.GoTo<HomePage>();

You can use the App GoTo method to navigate to the page and gets an instance of it.

homePage.FilterProducts(ProductFilter.Popularity);
homePage.AddProductById(28);
homePage.ViewCartButton.Click();

After you have the instance, you can directly start using the action methods of the page. As you can see the test became much shorter and more readable. The additional code pays off in future when changes are made to the page, or you need to reuse some of the methods.

var cartPage = App.Create<CartPage>();

Navigate to the shopping cart page by clicking the view cart button, so we do not have to call the GoTo method. But we still need an instance. We can get only an instance of the page through the App Create method.

cartPage.ApplyCoupon("happybirthday");
cartPage.UpdateProductQuantity(1, 2);
cartPage.AssertTotalPrice("95.00");
cartPage.ProceedToCheckout.Click();

Removing all elements and some implementation details from the test made it much more clear and readable. This is one of the strategies to follow for long-term successful automated testing.

var billingInfo = new BillingInfo
                  {
                      FirstName = "In",
                      LastName = "Deepthought",
                      Company = "Automate The Planet Ltd.",
                      Country = "Bulgaria",
                      Address1 = "bul. Yerusalim 5",
                      Address2 = "bul. Yerusalim 6",
                      City = "Sofia",
                      State = "Sofia-Grad",
                      Zip = "1000",
                      Phone = "+00359894646464",
                      Email = "info@bellatrix.solutions",
                      ShouldCreateAccount = true,
                      OrderCommentsTextArea = "cool product",
                  };

You can move the creation of the data objects in a separate factory method or class.