playwright/docs/src/test-pom-js.md

137 lines
4.1 KiB
Markdown
Raw Normal View History

---
id: test-pom
title: "Page Object Model"
---
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.
We will create a `PlaywrightDevPage` helper class to encapsulate common operations on the `playwright.dev` page. Internally, it will use the `page` object.
```js js-flavor=js
// playwright-dev-page.js
2021-08-23 20:10:12 -07:00
const { expect } = require('@playwright/test');
exports.PlaywrightDevPage = class PlaywrightDevPage {
2021-08-23 20:10:12 -07:00
/**
2021-08-23 20:10:12 -07:00
* @param {import('@playwright/test').Page} page
*/
constructor(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' });
2021-08-23 20:10:12 -07:00
this.tocList = page.locator('article ul > li > a');
}
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();
}
2022-03-08 14:01:50 -08:00
async pageObjectModel() {
await this.getStarted();
2022-03-08 14:01:50 -08:00
await this.pomLink.click();
}
2022-03-08 14:01:50 -08:00
}```
```js js-flavor=ts
// playwright-dev-page.ts
2021-08-23 20:10:12 -07:00
import { expect, Locator, Page } from '@playwright/test';
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;
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' });
2021-08-23 20:10:12 -07:00
this.tocList = page.locator('article ul > li > a');
}
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();
}
2022-03-08 14:01:50 -08:00
async pageObjectModel() {
await this.getStarted();
2022-03-08 14:01:50 -08:00
await this.pomLink.click();
}
2022-03-08 14:01:50 -08:00
}```
Now we can use the `PlaywrightDevPage` class in our tests.
```js js-flavor=js
// example.spec.js
2021-06-03 14:46:58 -07:00
const { test, expect } = require('@playwright/test');
const { PlaywrightDevPage } = require('./playwright-dev-page');
2022-03-08 14:01:50 -08:00
test('getting started should contain table of contents', async ({ page }) => {
const playwrightDev = new PlaywrightDevPage(page);
await playwrightDev.goto();
await playwrightDev.getStarted();
2021-08-23 20:10:12 -07:00
await expect(playwrightDev.tocList).toHaveText([
'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-03-08 14:01:50 -08:00
'Command line',
'Configure NPM scripts',
'Release notes'
]);
});
2022-03-08 14:01:50 -08:00
test('should show Page Object Model article', async ({ page }) => {
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');
});
```
```js js-flavor=ts
// example.spec.ts
2021-06-03 14:46:58 -07:00
import { test, expect } from '@playwright/test';
import { PlaywrightDevPage } from './playwright-dev-page';
2022-03-08 14:01:50 -08:00
test('getting started should contain table of contents', async ({ page }) => {
const playwrightDev = new PlaywrightDevPage(page);
await playwrightDev.goto();
await playwrightDev.getStarted();
2021-08-23 20:10:12 -07:00
await expect(playwrightDev.tocList).toHaveText([
'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-03-08 14:01:50 -08:00
'Command line',
'Configure NPM scripts',
'Release notes'
]);
});
2022-03-08 14:01:50 -08:00
test('should show Page Object Model article', async ({ page }) => {
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');
});
```