2021-05-31 22:01:21 -07:00
---
id: test-pom
title: "Page Object Model"
---
2022-08-16 15:58:16 +02:00
Large test suites can be structured to optimize ease of authoring and maintenance. Page object models are one such approach to structure your test suite.
## Introduction
A page object represents a part of your web application. An e-commerce web application might have a home page, a listings page and a checkout page. Each of them can be represented by page object models.
Page objects **simplify authoring** . They create a higher-level API which suits your application.
Page objects **simplify maintenance** . They capture element selectors in one place and create reusable code to avoid repetition.
## Implementation
* langs: js
2021-05-31 22:01:21 -07:00
We will create a `PlaywrightDevPage` helper class to encapsulate common operations on the `playwright.dev` page. Internally, it will use the `page` object.
2022-06-10 16:34:31 -08:00
```js tab=js-js
2021-05-31 22:01:21 -07:00
// playwright-dev-page.js
2021-08-23 20:10:12 -07:00
const { expect } = require('@playwright/test ');
2021-05-31 22:01:21 -07:00
exports.PlaywrightDevPage = class PlaywrightDevPage {
2021-08-23 20:10:12 -07:00
2021-06-21 19:56:30 +02:00
/**
2021-08-23 20:10:12 -07:00
* @param {import('@playwright/test ').Page} page
2021-06-21 19:56:30 +02:00
*/
2021-06-07 13:41:56 -07:00
constructor(page) {
2021-05-31 22:01:21 -07:00
this.page = page;
2022-03-08 14:01:50 -08:00
this.getStartedLink = page.locator('a', { hasText: 'Get started' });
this.gettingStartedHeader = page.locator('h1', { hasText: 'Getting started' });
this.pomLink = page.locator('li', { hasText: 'Playwright Test' }).locator('a', { hasText: 'Page Object Model' });
2022-06-21 11:08:57 +09:00
this.tocList = page.locator('article div.markdown ul > li > a');
2021-05-31 22:01:21 -07:00
}
async goto() {
await this.page.goto('https://playwright.dev');
}
async getStarted() {
2021-08-23 20:10:12 -07:00
await this.getStartedLink.first().click();
2022-03-08 14:01:50 -08:00
await expect(this.gettingStartedHeader).toBeVisible();
2021-05-31 22:01:21 -07:00
}
2022-03-08 14:01:50 -08:00
async pageObjectModel() {
2021-05-31 22:01:21 -07:00
await this.getStarted();
2022-03-08 14:01:50 -08:00
await this.pomLink.click();
2021-05-31 22:01:21 -07:00
}
2022-03-09 17:10:37 -08:00
}
```
2021-05-31 22:01:21 -07:00
2022-06-10 16:34:31 -08:00
```js tab=js-ts
2021-05-31 22:01:21 -07:00
// playwright-dev-page.ts
2021-08-23 20:10:12 -07:00
import { expect, Locator, Page } from '@playwright/test ';
2021-05-31 22:01:21 -07:00
export class PlaywrightDevPage {
readonly page: Page;
2021-08-23 20:10:12 -07:00
readonly getStartedLink: Locator;
2022-03-08 14:01:50 -08:00
readonly gettingStartedHeader: Locator;
readonly pomLink: Locator;
2021-08-23 20:10:12 -07:00
readonly tocList: Locator;
2021-05-31 22:01:21 -07:00
constructor(page: Page) {
this.page = page;
2022-03-08 14:01:50 -08:00
this.getStartedLink = page.locator('a', { hasText: 'Get started' });
this.gettingStartedHeader = page.locator('h1', { hasText: 'Getting started' });
this.pomLink = page.locator('li', { hasText: 'Playwright Test' }).locator('a', { hasText: 'Page Object Model' });
2022-06-21 11:08:57 +09:00
this.tocList = page.locator('article div.markdown ul > li > a');
2021-05-31 22:01:21 -07:00
}
async goto() {
await this.page.goto('https://playwright.dev');
}
async getStarted() {
2021-08-23 20:10:12 -07:00
await this.getStartedLink.first().click();
2022-03-08 14:01:50 -08:00
await expect(this.gettingStartedHeader).toBeVisible();
2021-05-31 22:01:21 -07:00
}
2022-03-08 14:01:50 -08:00
async pageObjectModel() {
2021-05-31 22:01:21 -07:00
await this.getStarted();
2022-03-08 14:01:50 -08:00
await this.pomLink.click();
2021-05-31 22:01:21 -07:00
}
2022-03-09 17:10:37 -08:00
}
```
2021-05-31 22:01:21 -07:00
Now we can use the `PlaywrightDevPage` class in our tests.
2022-06-10 16:34:31 -08:00
```js tab=js-js
2021-05-31 22:01:21 -07:00
// example.spec.js
2021-06-03 14:46:58 -07:00
const { test, expect } = require('@playwright/test ');
2021-05-31 22:01:21 -07:00
const { PlaywrightDevPage } = require('./playwright-dev-page');
2022-03-08 14:01:50 -08:00
test('getting started should contain table of contents', async ({ page }) => {
2021-05-31 22:01:21 -07:00
const playwrightDev = new PlaywrightDevPage(page);
await playwrightDev.goto();
await playwrightDev.getStarted();
2021-08-23 20:10:12 -07:00
await expect(playwrightDev.tocList).toHaveText([
2021-05-31 22:01:21 -07:00
'Installation',
2021-08-23 20:10:12 -07:00
'First test',
2022-03-08 14:01:50 -08:00
'Configuration file',
2021-08-23 20:10:12 -07:00
'Writing assertions',
'Using test fixtures',
'Using test hooks',
2022-06-21 11:08:57 +09:00
'VS Code extension',
2022-03-08 14:01:50 -08:00
'Command line',
'Configure NPM scripts',
'Release notes'
2021-05-31 22:01:21 -07:00
]);
});
2022-03-08 14:01:50 -08:00
test('should show Page Object Model article', async ({ page }) => {
2021-05-31 22:01:21 -07:00
const playwrightDev = new PlaywrightDevPage(page);
await playwrightDev.goto();
2022-03-08 14:01:50 -08:00
await playwrightDev.pageObjectModel();
await expect(page.locator('article')).toContainText('Page Object Model is a common pattern');
2021-05-31 22:01:21 -07:00
});
```
2022-06-10 16:34:31 -08:00
```js tab=js-ts
2021-05-31 22:01:21 -07:00
// example.spec.ts
2021-06-03 14:46:58 -07:00
import { test, expect } from '@playwright/test ';
2021-05-31 22:01:21 -07:00
import { PlaywrightDevPage } from './playwright-dev-page';
2022-03-08 14:01:50 -08:00
test('getting started should contain table of contents', async ({ page }) => {
2021-05-31 22:01:21 -07:00
const playwrightDev = new PlaywrightDevPage(page);
await playwrightDev.goto();
await playwrightDev.getStarted();
2021-08-23 20:10:12 -07:00
await expect(playwrightDev.tocList).toHaveText([
2021-05-31 22:01:21 -07:00
'Installation',
2021-08-23 20:10:12 -07:00
'First test',
2022-03-08 14:01:50 -08:00
'Configuration file',
2021-08-23 20:10:12 -07:00
'Writing assertions',
'Using test fixtures',
'Using test hooks',
2022-06-21 11:08:57 +09:00
'VS Code extension',
2022-03-08 14:01:50 -08:00
'Command line',
'Configure NPM scripts',
'Release notes'
2021-05-31 22:01:21 -07:00
]);
});
2022-03-08 14:01:50 -08:00
test('should show Page Object Model article', async ({ page }) => {
2021-05-31 22:01:21 -07:00
const playwrightDev = new PlaywrightDevPage(page);
await playwrightDev.goto();
2022-03-08 14:01:50 -08:00
await playwrightDev.pageObjectModel();
await expect(page.locator('article')).toContainText('Page Object Model is a common pattern');
2021-05-31 22:01:21 -07:00
});
```
2022-08-16 15:58:16 +02:00
## Implementation
* langs: csharp, python, java
Page object models wrap over a Playwright [Page].
```java
// models/SearchPage.java
package models;
import com.microsoft.playwright;
public class SearchPage {
private final Page page;
private final Locator searchTermInput;
public SearchPage(Page page) {
this.page = page;
this.searchTermInput = page.locator("[aria-label='Enter your search term']");
}
public void navigate() {
page.navigate("https://bing.com");
}
public void search(String text) {
searchTermInput.fill(text);
searchTermInput.press("Enter");
}
}
```
```python async
# models/search.py
class SearchPage:
def __init__ (self, page):
self.page = page
self.search_term_input = page.locator('[aria-label="Enter your search term"]')
async def navigate(self):
await self.page.goto("https://bing.com")
async def search(self, text):
await self.search_term_input.fill(text)
await self.search_term_input.press("Enter")
```
```python sync
# models/search.py
class SearchPage:
def __init__ (self, page):
self.page = page
self.search_term_input = page.locator('[aria-label="Enter your search term"]')
def navigate(self):
self.page.goto("https://bing.com")
def search(self, text):
self.search_term_input.fill(text)
self.search_term_input.press("Enter")
```
```csharp
using System.Threading.Tasks;
using Microsoft.Playwright;
namespace BigEcommerceApp.Tests.Models;
public class SearchPage
{
private readonly IPage _page;
private readonly ILocator _searchTermInput;
public SearchPage(IPage page)
{
_page = page;
_searchTermInput = page.Locator("[aria-label='Enter your search term']");
}
public async Task GotoAsync()
{
await _page.GotoAsync("https://bing.com");
}
public async Task SearchAsync(string text)
{
await _searchTermInput.FillAsync(text);
await _searchTermInput.PressAsync("Enter");
}
}
```
Page objects can then be used inside a test.
```java
import models.SearchPage;
import com.microsoft.playwright.*;
...
// In the test
Page page = browser.newPage();
SearchPage searchPage = new SearchPage(page);
searchPage.navigate();
searchPage.search("search query");
```
```python async
# test_search.py
from models.search import SearchPage
# in the test
page = await browser.new_page()
search_page = SearchPage(page)
await search_page.navigate()
await search_page.search("search query")
```
```python sync
# test_search.py
from models.search import SearchPage
# in the test
page = browser.new_page()
search_page = SearchPage(page)
search_page.navigate()
search_page.search("search query")
```
```csharp
using BigEcommerceApp.Tests.Models;
// in the test
var page = new SearchPage(await browser.NewPageAsync());
await page.GotoAsync();
await page.SearchAsync("search query");
```
### API reference
- [Page]