2021-05-31 22:01:21 -07:00
---
id: test-pom
title: "Page Object Model"
---
2022-08-16 22:00:54 -07:00
Page Object Model is a common pattern that introduces abstractions over web app pages to simplify interactions with them in multiple tests. It is best explained by an example.
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' });
2022-08-20 07:03:50 +07:00
this.gettingStartedHeader = page.locator('h1', { hasText: 'Installation' });
2022-03-08 14:01:50 -08:00
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' });
2022-08-20 07:03:50 +07:00
this.gettingStartedHeader = page.locator('h1', { hasText: 'Installation' });
2022-03-08 14:01:50 -08:00
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([
2022-08-20 07:03:50 +07:00
`How to install Playwright` ,
`What's Installed` ,
`How to run the example test` ,
`How to open the HTML test report` ,
`Write tests using web first assertions, page fixtures and locators` ,
`Run single tests, multiple tests, headed mode` ,
`Generate tests with Codegen` ,
`See a trace of your tests`
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([
2022-08-20 07:03:50 +07:00
`How to install Playwright` ,
`What's Installed` ,
`How to run the example test` ,
`How to open the HTML test report` ,
`Write tests using web first assertions, page fixtures and locators` ,
`Run single tests, multiple tests, headed mode` ,
`Generate tests with Codegen` ,
`See a trace of your tests`
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
});
```