PageObjectLibrary

Overview

PageObjectLibrary is a lightweight Robot Framework keyword library that makes it possible to use the Page Object pattern when testing web pages with the keyword based approach of robot framework.

Installing

pip install --upgrade robotframework-pageobjectlibrary

Source Code

The source code is hosted on GitHub at the following url:

Running the Demo

In the GitHub repository is a small demonstration suite that includes a self-contained webserver and web site.

For the demo to run, you must have robotframework 2.9+ and robotframework-seleniumlibrary installed. You must also have cloned the GitHub repository to have access to the demo files.

To run the demo, clone the GitHub repository, cd to the folder that contains this file, and then run the following command: :

robot -d demo/results demo

A Simple Tutorial

For a simple tutorial, see https://github.com/boakley/robotframework-pageobjectlibrary/wiki/Tutorial

How it Works

The Page Object library is quite simple. Page Object classes are implemented as standard robot keyword libraries, and relies on robot frameworks built-in Set library search order keyword.

The core concept is that when you use PageObjectLibrary keywords to go to a page or assert you are on a specific page, the keyword will automatically load the library for that page and put it at the front of the library search order, guaranteeing that the Page Object keywords are available to your test case.

Why Page Objects Makes Writing Tests Easier

The purpose of the Page Object pattern is to encapsulate the knowledge of how a web page is constructed into an object. Your test uses the object as an interface to the application, isolating your test cases from the details of the implementation of a page.

With Page Objects, developers are free to modify web pages as much as they want, and the only thing they need to do to keep existing tests from failing is to update the Page Object class. Because test cases aren’t directly tied to the implementation, they become more stable and more resistant to change as the website matures.

A Typical Test Without Page Objects

With traditional testing using Selenium, a simple login test might look something like the following: (using the pipe-separated format for clarity):

*** Test Cases ***
| Login with valid credentials
| | Go to | ${ROOT}/Login.html
| | Wait for page to contain | id=id_username
| | Input text | id=id_username | ${USERNAME}
| | Input text | id=id_password | ${PASSWORD}
| | Click button | id=id_form_submit
| | Wait for page to contain | Your Dashboard
| | Location should be | ${ROOT}/dashboard.html

Notice how this test is tightly coupled to the implementation of the page. It has to know that the input field has an id of id_username, and the password field has an id of id_password. It also has to know the URL of the page being tested.

Of course, you can put those hard-coded values into variables and import them from a resource file or environment variables, which makes it easier to update tests when locators change. However, there’s still the overhead of additional keywords that are often required to make a test robust, such as waiting for a page to be reloaded. The provided PageObject superclass handles some of those details for you.

The Same Test, Using Page Objects

Using Page Objects, the same test could be written like this:

*** Test Cases ***
| Login with valid credentials
| | Go to page | LoginPage
| | Login as a normal user
| | The current page should be | DashboardPage

Notice how there are no URLs or element locators in the test whatsoever, and that we’ve been able to eliminate some keywords that typically are necessary for selenium to work but which aren’t part of the test logic per se. What we end up with is test case that is nearly indistinguishable from typical acceptance criteria of an agile story.

Writing a Page Object class

Page Objects are simple python classes that inherit from PageObjectLibrary.PageObject. There are only a couple of requirements for the class:

By inheriting from PageObjectLibrary.PageObject, methods have access to the following special object attributes:

An example Page Object

A Page Object representing a login page might look like this:

from PageObjectLibrary import PageObject

class LoginPage(PageObject):
    PAGE_TITLE = "Login - PageObjectLibrary Demo"
    PAGE_URL = "/login.html"

    _locators = {
        "username": "id=id_username",
        "password": "id=id_password",
        "submit_button": "id=id_submit",
    }

    def enter_username(self, username):
        """Enter the given string into the username field"""
        self.selib.input_text(self.locator.username, username)

    def enter_password(self,password):
        """Enter the given string into the password field"""
        self.selib.input_text(self.locator.password, password)

    def click_the_submit_button(self):
        """Click the submit button, and wait for the page to reload"""
        with self._wait_for_page_refresh():
            self.selib.click_button(self.locator.submit_button)