Scroll Top
Getting your Trinity Audio player ready...

Problem statement

Selenium does not need an introduction. It is the most sought/used framework for automating web applications. When we look at automation at a very high level, it primarily involves two primary tasks.

  • First one is uniquely identifying the given UI element and performing actions around it.
  • The second one is writing test scripts as per the steps in the test scenario.

While automating AUT (Application Under Test), we often face a problem with code maintenance and redundancy of code if we don’t demarcate the above-mentioned tasks or If we write common code for these tasks and then if there is a change UI element reference you end up making changes in code in all places where the given UI element is referred. If test automation framework provides a way to demarcate, then it will be an interesting proposition.

Introduction

Selenium solved the above problem using the concept called ‘Page Object Model’ ‘.

Page Object Model is an implementation of Object/Element Design pattern. A Page Object Model is a class which contains Reference(locators) of UI elements and Methods to perform possible interactions on web elements, then the test is the separate class, which uses the methods of those page object class whenever we need to interact with UI elements. In case of any change in UI elements, we don’t need to do any change in the test. We just simply change/add them in the respective page object class. So, we can say that all the new/modified UI element changes can be done in one class.

In this blog, we will discuss how ‘Page Object Model Design Pattern’ works with an example and primary advantages of POM.

Prerequisites:

  1. Java
  2. Selenium
  3. Eclipse IDE to run the scripts
  4. Browser Drivers(Chrome, IE etc..)
  5. TestNG

Use Case:

As part of this blog, we will prepare test scripts for login and home page access for Sencha Tutorial. It is a Sencha learning platform, you can find more details in this link.

Automation Test Scenarios:

login page:

     Test steps

  1. Open the Sencha Tutorials.
  2. In the Login Form, find the username field and enter the input text.
  3. Find the password field and enter the input text.
  4. Find the submit button and click on it.

     Expected Result: User shall log in successfully and see the Home page.

HomePage:

    Test steps

  1. In Home Page, find the ‘Fundamentals’ section and click on it.
  2. Find the ‘Working with Elements’ under ‘Fundamentals’ section and click on it.
  3. Find the ‘Modify Style’ section in ‘Working with Elements’ page and click on it.

     Expected Result: The user should able to see the  ‘Modify Style’ of ‘Working with Elements’ page.

Code Flow Diagram

The Above diagram shows the code flow of the page object Model.

Getting Started

Create POM

Create LoginPage.java, which holds all the UI elements of Login Page and actions corresponding to the elements:

Create HomePage.java, which holds all the UI elements of Login Page and actions corresponding to the elements:

Create Test Case

The Following is the test case class called ‘SenchaTutorial.java

Run your Test

Run this test by right-clicking on the test script and select Run As > TestNG Test.

Executing the LoginPage Scenario:

Expected Result: User shall login successfully and can see the Home page:

Executing the HomePage Scenario:

Advantages of POM:

By using POM we are able to achieve few advantages. Here, we are listing out some of them:

  1. It is easy to maintain and reusability of scripts.
  2. It makes the framework user-friendly.
  3. It is efficient and scalable.
  4. Centralized maintenance of elements/ objects.

Summary

In this blog, we discussed the inevitable need of ‘page object model’ and covered the details of it with an example. We hope this blog gives you the basic understanding of POM and helps you to get started in no time.

At WalkingTree we are excited about the possibilities that Selenium brings in with Page Object Model. Hope this article will save a good amount of time for you when you come across this kind of need.

If you want your thoughts or process to get validated by the industry experts?  We will be excited to guide you!

References

Related Posts

Leave a comment

Privacy Preferences
When you visit our website, it may store information through your browser from specific services, usually in form of cookies. Here you can change your privacy preferences. Please note that blocking some types of cookies may impact your experience on our website and the services we offer.