Annotations
- Annotations
- Focus a test
- Skip a test
- Conditionally skip a test
- Group tests
- Tag tests
- Conditionally skip a group of tests
- Use fixme in
beforeEach
hook
#
AnnotationsPlaywright Test supports test annotations to deal with failures, flakiness, skip, focus and tag tests:
skip
marks the test as irrelevant. Playwright Test does not run such a test. Use this annotation when the test is not applicable in some configuration.fail
marks the test as failing. Playwright Test will run this test and ensure it does indeed fail. If the test does not fail, Playwright Test will complain.fixme
marks the test as failing. Playwright Test will not run this test, as opposite to thefail
annotation. Usefixme
when running the test is slow or crashy.slow
marks the test as slow and triples the test timeout.
Annotations can be used on a single test or a group of tests. Annotations can be conditional, in which case they apply when the condition is truthy. Annotations may depend on test fixtures. There could be multiple annotations on the same test, possibly in different configurations.
#
Focus a testYou can focus some tests. When there are focused tests, only these tests run.
- TypeScript
- JavaScript
test.only('focus this test', async ({ page }) => { // Run only focused tests in the entire project.});
test.only('focus this test', async ({ page }) => { // Run only focused tests in the entire project.});
#
Skip a testMark a test as skipped.
- TypeScript
- JavaScript
test.skip('skip this test', async ({ page }) => { // This test is not run});
test.skip('skip this test', async ({ page }) => { // This test is not run});
#
Conditionally skip a testYou can skip certain test based on the condition.
- TypeScript
- JavaScript
test('skip this test', async ({ page, browserName }) => { test.skip(browserName === 'firefox', 'Still working on it');});
test('skip this test', async ({ page, browserName }) => { test.skip(browserName === 'firefox', 'Still working on it');});
#
Group testsYou can group tests to give them a logical name or to scope before/after hooks to the group.
- TypeScript
- JavaScript
import { test, expect } from '@playwright/test';
test.describe('two tests', () => { test('one', async ({ page }) => { // ... });
test('two', async ({ page }) => { // ... });});
const { test, expect } = require('@playwright/test');
test.describe('two tests', () => { test('one', async ({ page }) => { // ... });
test('two', async ({ page }) => { // ... });});
#
Tag testsSometimes you want to tag your tests as @fast
or @slow
and only run the tests that have the certain tag. We recommend that you use the --grep
and --grep-invert
command line flags for that:
- TypeScript
- JavaScript
import { test, expect } from '@playwright/test';
test('Test login page @fast', async ({ page }) => { // ...});
test('Test full report @slow', async ({ page }) => { // ...});
const { test, expect } = require('@playwright/test');
test('Test login page @fast', async ({ page }) => { // ...});
test('Test full report @slow', async ({ page }) => { // ...});
You will then be able to run only that test:
npx playwright test --grep @fast
Or if you want the opposite, you can skip the tests with a certain tag:
npx playwright test --grep-invert @slow
#
Conditionally skip a group of testsFor example, you can run a group of tests just in Chromium by passing a callback.
- TypeScript
- JavaScript
// example.spec.ts
test.describe('chromium only', () => { test.skip(({ browserName }) => browserName !== 'chromium', 'Chromium only!');
test.beforeAll(async () => { // This hook is only run in Chromium. });
test('test 1', async ({ page }) => { // This test is only run in Chromium. });
test('test 2', async ({ page }) => { // This test is only run in Chromium. });});
// example.spec.js
test.describe('chromium only', () => { test.skip(({ browserName }) => browserName !== 'chromium', 'Chromium only!');
test.beforeAll(async () => { // This hook is only run in Chromium. });
test('test 1', async ({ page }) => { // This test is only run in Chromium. });
test('test 2', async ({ page }) => { // This test is only run in Chromium. });});
beforeEach
hook#
Use fixme in To avoid running beforeEach
hooks, you can put annotations in the hook itself.
- TypeScript
- JavaScript
// example.spec.ts
test.beforeEach(async ({ page }) => { test.fixme(isMobile, 'Settings page does not work in mobile yet');
await page.goto('http://localhost:3000/settings');});
test('user profile', async ({ page }) => { await page.click('text=My Profile'); // ...});
// example.spec.js
test.beforeEach(async ({ page, isMobile }) => { test.fixme(isMobile, 'Settings page does not work in mobile yet');
await page.goto('http://localhost:3000/settings');});
test('user profile', async ({ page }) => { await page.click('text=My Profile'); // ...});