Playwright Reporting: A Complete Tutorial

This tutorial on Playwright reporting delves extensively into various reporting mechanisms, including reports generated on CI, built-in reporters, custom reporters, and third-party reporters

Chapters

Total Chapters (22)

Chapter 15 : A Complete Tutorial on Playwright Reporting

Triangle

OVERVIEW

As the management guru Peter Drucker famously said, “If you can't measure it, you can't manage it.” On the principles of this saying, you can also say, "If you can’t measure it, you can’t assure the quality of the product.” To be assertive about the quality of the product, you measure the outcome with the desired outcome, and you have to build reports which can evaluate on the ground. Well, the same principles also apply to test automation 🙂.

Based on the analysis of test results, you can build the reports so that it helps stakeholders to make better decisions. In test automation, you can generate presentable reports in several ways.

Depending on the automation testing framework and language you use, several reporting tools are available, like Allure, Extent Reports, etc. In this Playwright reporting tutorial, we will dive deep into Playwright reporting. Using Playwright, you can generate different types of reports and the upcoming Playwright reporting section will talk about the same.

Let’s first find out why a test automation report is needed and some of the metrics you can expect.

...

Why Test Automation Reports?

Test Automation Reports play a critical role in any test automation framework. It is important to generate the test automation report when running a test suite where you have group test cases and want to analyze the outcome.

As a result, a more thorough analysis of your findings can contribute to the test automation framework being more solid and stable, along with keeping the test treads. These test reports are helpful in several ways from the beginning of the development cycle by spotting the bugs early, enabling you with faster shipping and accelerated dev feedback time.

Metrics can differ depending on the type of test being run when you are doing cross browser testing. Hence reporting becomes an essential part. A good automation test report will show some of the below-mentioned information:

  • Test Suite Name
  • Environment Name (OS/browser)
  • Build Name
  • Overall Test Results (Passed, Failed, and Skipped test scripts)
  • Total Number of Test Cases
  • Test Case Details (Status, Steps, Test Assertions Status, Line of Error, Screenshot and Video)
  • Duration of Test Suite Execution
  • Duration of each Test Case Execution
  • Historical trend of each Test Case

Now we will take a deeper look into Playwright reporting. However, if you are getting started with the Playwright framework and want to know more about it, let’s have a quick look at it.

...

What is Playwright?

Playwright is a popular open-source Node.js library that allows developers to automate and test web applications across multiple browsers. It is created by Microsoft and supports Chrome, Firefox, Safari, and Edge. With Playwright, you can automate browser actions like clicking buttons, filling out forms, and navigating between pages.

It is designed to be fast, reliable, and easy to use. It supports multiple programming languages like JavaScript, TypeScript, Python, and Java, making it accessible to a wide range of developers.

One of the key features of Playwright is its ability to work with multiple browsers. This means you can test your web application across different browsers without having to write separate tests for each. Playwright also provides built-in support for headless mode, which allows you to run tests without a visible browser window, making it ideal for running tests in a CI/CD pipeline.

If you're new to Playwright, there are plenty of resources available to help you get started, including documentation, tutorials, and sample code. With its intuitive API and cross-browser support, Playwright is quickly becoming a popular choice for web application testing.

Getting started with Playwright

Installing Playwright is a straightforward process, and it can be done using npm (Node Package Manager). The first step is to ensure that Node.js and npm are installed on your computer. Here are the steps to follow to install Playwright:

Step 1: First, you need to have Node.js installed on your machine. You can download it directly from the Node.js website and install it on your machine if you are not already using it

Once installed, check the version:


node -v
Playwright Reporting node -v

Step 2: Download and Visual Studio CodeInstall (this will help you write formatted code, but you can pick any text editor of your choice).

Step 3: Open Visual Studio Code

Step 4: Open your integrated Terminal and run the following command


mkdir playwright-reporters-demo
Playwright Reporting mkdir playwright-reporters-demo

Step 5: Open the directory.


cd playwright-reporters-demo
Playwright Reporting cd playwright-reporters-demo

Step 6: Create a new package.json file with default values.


npm init -y

Your package.json file should be like this:


{
  "name": "playwright-reporters-demo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo "Error: no test specified" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
}
Playwright Reporting package.json

Step 7: Install the Playwright.

So you can install Playwright using npm or yarn, and another way is by VS Code Extension.

In this Playwright reporting tutorial, we will install the Playwright using the npm command.

On your terminal, type:


npm init playwright@latest

As soon as you enter the above comment, you will be prompted in the terminal few options to choose from:

  • Type y to proceed with the installation.
  • It will ask if you want to install TypeScript or JavaScript. Here you choose JavaScript.
  • It will ask if you want to install TypeScript or JavaScript. Here you choose JavaScript.
  • It will ask if you want to add end-to-end tests with the folder name as tests. If you want to change it, you can do so or hit enter to select the default.
  • It will then ask if you want to add GitHub Actions Workflow. Here you will select N and skip this.
  • It will finally ask if you want to install Playwright browsers, and if the default option is true, you will hit the Enter key.
  • You are done, it will do its job and complete the installation with the setting you selected.
Playwright Reporting npm init playwright@latestPlaywright Reporting node_modules

Once the installation is complete, node_modules will be created with all the dependencies installed in it.

Step 9: By default .gitignore file will be created so that unwanted files are not committed to the code repository


node_modules/
/test-results/
/playwright-report/
/playwright/.cache/
Playwright Reporting gitignore

Running test

Since we have installed Playwright with default options, it created an example spec file named example.spec.js in the tests folder. Let’s run the test:


npx playwright test
Playwright Reporting npx playwright test

If you look into example.spec.js only 2 tests are present, but still, the console shows 6 passed (42s). It's because in the playwright.config.js configuration file, 3 browsers, Chromium, Firefox, and WebKit, are set so that each test will be executed twice on each of the browsers specified in the configuration

Playwright Reporting playwright.config.js

It will also generate a default HTML report because it’s the default reporter when you set up Playwright

Playwright Reporting HTML report

Open index.html from the playwright-report folder

Playwright Reporting playwright-report

You can also use Playwright reporting by opening the report by running the following command on the terminal. It will open the same report from the default location


npx playwright show-report

Playwright Reporting

Playwright is one of its kind with a built-in reporting mechanism. Playwright reporting gives you huge flexibility in generating reports in different patterns based on your need and use case.

These reports can either be generated by passing the --reporter command line option or you can also add them as a script in the package.json file.


npx playwright test --reporter=line

Playwright reporting can be used to generate reports or can be controlled programmatically in the configuration file, i.e., playwright.config.js, by specifying the reporters.


// Filename: playwright.config.js


const config = {
    reporter: 'line',
};


module.exports = config;  

Multiple Reports

With Playwright reporting, you can use Multiple reports by generating multiple reports simultaneously.

Let’s take an example of a list and an HTML report in Playwright reporting. When you specify this either in the command line or in the configuration file, it will generate the list report, which will be shown in the console, and an HTML report will be generated.


// Filename: playwright.config.js


const config = {
    reporter: [
        ['list'],
        ['html']
    ],
};


module.exports = config;

Reports on CI

With this type of Playwright reporting, you can generate different kinds of reports on CI as well.

dot is one of the reports that will not clutter the log or console with too much output, and it's the default report on CI.


// Filename: playwright.config.js


const config = {
    // Concise 'dot' for CI, default 'list' when running locally
    reporter: process.env.CI ? 'dot' : 'list',
};


module.exports = config;

When the test is executed from CI, it will pick the dot reporter, but if it's run locally, it will show a list report in the console.

Reporting on CI is beyond the scope of this Playwright reporting tutorial, and we will be covering the same later in this Playwright testing series.

Built-in Reporters

Playwright reporting gives a built-in option for reporters. You can generate it by passing the reporter in the command line or specifying it in the Playwright configuration file.

Before we get into actual test reporters, let's quickly set up the Playwright framework and run the example tests to see tests in action, and further, you will use it to create working example code.

Following are the Playwright built-in reporters:

  • List Reporter
  • Line Reporter
  • Dot Reporter
  • HTML Reporter
  • JSON Reporter
  • JUnit Reporter
  • GitHub Actions annotations

Now, it’s time to look into the built-in reporters of Playwright reporting in detail.

List Reporter

It will print a line for each test being run, and test results will be reported in the console/terminal.

Command line

Since we already have 2 example tests in the example.spec.js file, let's run the test and see the results


npx playwright test --reporter=list
Playwright Reporting npx playwright test --reporter=list

6 tests are executed, and it's listed on the console.

Playwright Config:

Instead of passing reporter in the command line, we can mention it under reporter in playwright.config.js.


// Filename: playwright.list.config.js


const config = {
    reporter: 'list',
};


module.exports = config;  

Run the following command to use the configuration file created above, which has all the options discussed


npx playwright test --config=playwright.list.config.js

Now, if you add another sample test, it will fail for demonstration.


// Filename: fail.spec.js


const { test, expect } = require('@playwright/test');


test('has title', async ({ page }) => {
    await page.goto('https://playwright.dev/');
    await expect(page).toHaveTitle("Test Title to fail the test");
});

When you run the test, you will observe that the same test will fail 3 times as we have mentioned 3 browser configurations and the remaining 6 other tests will pass.

playwright reporting 3 browser configurations

In this demonstration, we will comment on and uncomment this test to see the behaviors of reporters.

You can choose to render the step by passing the following config option:


// Filename: playwright.config.js


const config = {
    reporter: [['list', { printSteps: true }]],
};


module.exports = config; 

Line Reporter

Line reporter is a concise reporting format that displays information in a single line, indicating the last completed tests, and only outputs error messages if they occur.

When you have large test suites, console logs can become cluttered if too much information is printed for each test. In this case, a Line reporter is used for Playwright reporting.

Even when there is a failure in the middle of the test run, it’s reported inline.

Command line


/npx playwright test --reporter=line

Playwright Config:


/// Filename: playwright.line.config.js


const config = {
    reporter: 'line',
};


module.exports = config; 

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.line.config.js
playwright reporting reliable testing modern webpage

Dot Reporter

Dot reporter is the shortest form of reporting where passed tests are reported as dot and failed are shown as F. It’s the default reporter on CI and useful when you don’t want a lot of information to be reported on output.

Command line


npx playwright test --reporter=dot

Playwright Config:


// Filename: playwright.dot.config.js


const config = {
    reporter: 'dot',
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.dot.config.js 
Playwright Reporting npx playwright test --config=playwright.dot.config.js

Here is the example output where you can see that one test failed at the end of the test run.

HTML Reporter

After designing your automation framework as a next step, you look for a reporting tool that can be easily integrated with the test automation framework. The Playwright reporting makes life so easy and provides an HTML reporter that creates an independent folder containing the test report that can be used as a web page. It gives the overall test suite results, including individual test results.

playwright reprting index html

Command line


npx playwright test --reporter=html

Playwright Config:

By default, the HTML reporter opens the index.html file in the default browser when execution is completed. You can change this behavior by using open property in the Playwright config. open property can have values like always, never, and on-failures (default). Here it's set to never, which means it will not open the report on its own.

Host property is used to specify the location/target IP address where you want to open the report. Here it’s specified 0.0.0.0, which will open the report on localhost.

Port property is used to specify the port on which you want to open the report. The default value is 9223.


// Filename: playwright.html.config.js


const config = {
    reporter: [['html', {
        open: 'never',
        host: '0.0.0.0',
        port: 9223,
    }]],
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.html.config.js
reporting playwright javascript demo

Example HTML Report

playwright reporting fail spec.js page

You can override the HTML output location by specifying the output folder location in the Playwright config file. Let’s say you want to store a report in the my-report directory.


// Filename: playwright.html.config.js


const config = {
    reporter: [['html', {
        outputFolder: 'my-report',
        open: 'never',
        host: '0.0.0.0',
        port: 9223,
    }]],
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.html.config.js
playwright reporting show report testplaywright reporting output folderplaywright reporting node modules page

By using the simple commands, you can open the report if you have changed the default setting to never or on-failure. If you are using a custom folder, like here, we have my-report.


npx playwright show-report my-report

HTML reporter doesn’t support merging of reports generated across multiple `--shards`. When you run tests on multiple machines, you will have multiple reports to look at, but with the help of other third-party reporter solutions, you can overcome this.

JSON Reporter

An object with all the information about the test run is stored when you use a JSON reporter for Playwright reporting.

Command line


npx playwright test –reporter=json

When you run this command, it will display the JSON in the output/terminal

playwright reporting global teardown

Playwright Config:

You can write the JSON to a file by specifying the output file.


// Filename: playwright.json.config.js


const config = {
    reporter: [['json', {
        outputFile: 'test-results.json',
    }]],
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.json.config.js
test title to fail the test

JUnit Reporter

JUnit-style xml report can be created using Playwright JUnit reporter.

Command line


npx playwright test –reporter=junit

When you run this command, it will display the JSON in the output/terminal.

playwright reporting my work space npx

Playwright Config:

You can write the XML to a file by specifying the output file.


// Filename: playwright.junit.config.js


const config = {
    reporter: [['junit', {
        outputFile: 'test-results.xml',
    }]],
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.junit.config.js
running-following-command

Custom Reporters

By implementing a class with some reporter methods, you can create a custom reporter for Playwright reporting.

Create a file with the name my-awesome-reporter.js.


class MyReporter {
onBegin(config, suite) {
console.log('====================================================== ');
console.log('Starting the run with ${suite.allTests().length} tests');
    console.log('======================================================');
}


    onTestBegin(test) {
        console.log('Starting test ${test.title}');
}


    onTestEnd(test, result) {
        console.log('Finished test ${test.title}: ${result.status}');
}


    onEnd(result) {
        console.log('======================================================');
    console.log('Finished the run: ${result.status}');
    console.log('======================================================');
}
}


module.exports = MyReporter;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.custom.config.js	
custom-reporters-running-following-command

When one of the test fails:

when-one-of-the-test-fails-for-custom-reporters

Third-party Reporters

Playwright is a growing community, and support of 3rd-party integration and reporting tools is increasing daily. We will look into all of this Playwright reporting in detail.

Allure

It gives you great flexibility in terms of multi-language support. It provides the report in HTML with a clear graphical view and all kinds of test information. Let’s set up the Allure reporting in the framework.

Allure for Playwright

You need to install the Allure dependency in the project to generate the report.


npm install allure-playwright --save-dev

Allure Command Line Utility

To open the Allure report in the web browser, you need to install the allure command line utility dependency in the project.


npm install allure-commandline --save-dev
allure-command-line-utility-dependency-in-the-project

Filename: Package.json


{
"name": "playwright-reporters-demo",
"version": "1.0.0",
"description": "This is a test automation framework designed using Playwright to demonstrate different reporter",
"main": "index.js",
"scripts": {
"clean": "rimraf allure-results/ && rimraf allure-report/ && rimraf playwright-report/ && rimraf monocart-results/",
"test": "playwright test",
"allure-reporter": "npm run clean && playwright test --config=playwright.allure.config.js"
},
"keywords": [
"node",
"javascript",
"allure-report",
"rimraf",
"lambdatest",
"allure-reporting",
"playwright-tests",
"lambdatest-playwright"
],
"author": "Code with MMAK",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.30.0",
"allure-commandline": "^2.20.1",
"allure-playwright": "^2.0.0-beta.24",
"monocart-reporter": "^1.1.4",
"playwright": "^1.30.0",
"rimraf": "^4.1.1"
}
}

Execution:

You can run the Playwright from the command line and configuration by specifying Allure reporter.

Command line:


npx playwright test --reporter=line,allure-playwright

Playwright configuration:


// Filename: playwright.allure.config.js


const config = {
reporter: [
['line'],
['allure-playwright']],
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.allure.config.js
playwright-configuration-allure-reporter

Once test execution is completed, you should see a folder with the name allure-results.

Generate Allure Report in HTML

Now you need to generate the HTML report using the allure command line.


npx allure generate ./allure-results 

Once the command is executed, it will generate a folder with the name allure-report.

will-generate-a-folder-with-the-name-allure-report

Open Allure Report Using Command line

Allure provides an option to open the report from the destination folder by simple command:


npx allure open ./allure-report

This will open your report in the default browser.

will-open-your-report-in-the-default-browserallure-view

Detailed View:

detailed-view-allure

Let’s use Selenium Grid to execute the test on LambdaTest.

LambdaTest is a digital experience testing platform that allows you to perform manual and automated testing of websites and mobile applications. It provides a scalable online browser farm to run Playwright test scripts across 50+ browsers and OS combinations at scale.

Furthermore, you can accelerate release cycles by multiple folds with parallel test execution.

You can also subscribe to the LambdaTest YouTube Channel and stay updated with the latest tutorial around Selenium testing, Cypress E2E testing, Appium, and more.

For this Playwright reporting tutorial, you will be importing lambdatest-setup, which you can find on the Git Repo, along with all the examples explained in this Playwright reporting tutorial.

Create a folder named tests-lambdatest and add a spec file named title.spec.js.

create-a-folder-named-testslambdatest

For this example test, you will be using LambdaTest eCommerce Playground to verify the title of pages by navigating to the different pages.

Implementation:


const { test } = require("../lambdatest-setup");
const { expect } = require("@playwright/test");


test('homepage has title', async ({ page }) => {
await page.goto('https://ecommerce-playground.lambdatest.io');
await expect(page).toHaveTitle(/Your Store/);
});


test('special offer has title', async ({ page }) => {
await page.goto('https://ecommerce-playground.lambdatest.io/index.php?route=product/special');
await expect(page).toHaveTitle(/Special Offers/);
});


test('register account has title', async ({ page }) => {
await page.goto('https://ecommerce-playground.lambdatest.io/index.php?route=account/register');
await expect(page).toHaveTitle(/Register Account/);
});
LambdaTest

Code Walkthrough:

Line 1: Import test, which is called from lambdatest-setup.js file, so that execution can also be done on LambdaTest.

Line 2: Import expect, which is called from @playwright/test.

Line 4: Test is a block where you will write your test. You can have multiple tests in a spec

Line 5: Navigating to the test URL, i.e., Home page.

Line 6: Expecting the page to have a title.

Line 10: Navigating to the test URL, i.e., the Special Offers page.

Line 11: Expecting the page to have a title.

Line 15: Navigating to the test URL, i.e., Register Account page.

Line 16: Expecting the page to have a title.

Execution:

Add a test script in package.json, which can be used to run the tests on LambdaTest.


"lambdatest": "npm run clean && npx playwright test --config=./lambdatest.config.js --reporter=line,allure-playwright",

Your package.json should look like this:

your-packagejson-should-look-like-this

Now you can make use of the script name lambdatest and run your test through Terminal.


npm run lambdatest

Here is the execution snapshot, which indicates that 12 tests passed. This is because we have specified the 4 browsers in the config file, and there are 3 tests, so in total it's 12 tests executed on Selenium Grid.

tests-executed-on-selenium-grid

You will see that test execution starts and the status of each test will be reported in the terminal, and an allure-results folder is created.

Now generate the HTML report.


npm run generate-allure-report

It will generate the HTML under the allure-report directory.

allure-report directorywill-generate-the-html-under-the-allure

Execution:

Show below is the execution on LambdaTest Cloud.

below-is-the-execution

Expanded view of test result:

expanded-view-of-test-result

Monocart

It generates the HTML report and shows suites/cases/steps with tree style, markdown annotations, and custom columns.

You need to install the Monocart dependency in the project to generate the report.


npm install monocart-reporter --save-dev

Playwright Config:


// Filename: playwright.monocart.config.js


const config = {
reporter: [['monocart-reporter', {
name: 'My Test Report',
outputFile: './monocart-results/report.html'
}]],
};


module.exports = config;

Run the following command to use the configuration file created above, which has all the options discussed.


npx playwright test --config=playwright.monocart.config.js
npx-playwright-test

If you want to demonstrate your expertise as a Playwright automation tester, LambdaTest offers the Playwright 101 certification program for developers who wish to exhibit their Playwright automation testing skills. This certification is designed to validate the proficiency of developers in utilizing Playwright for end-to-end testing of modern web applications.

LambdaTest

Conclusion

In this Playwright reporting tutorial, you have seen different types of reporting available in Playwright. Based on your project's use case, you can pick any Playwright reporting tools. You might have seen that one uses console reporting, which is quick to analyse or debug the tests, and another for visual representation, which can be done by choosing any HTML reporter.

...

Frequently asked questions

  • General ...
  • LambdaTest related FAQs
How do you create a report on a Playwright?
Playwright has built-in support for generating reports of your tests, making it easy to keep track of test results and identify any issues that need to be addressed. Here are the general steps to create a report on Playwright:Choose a test runner that supports report generation, such as Jest, Mocha, or Cucumber. Configure the test runner to generate a report after running the tests. This involves adding a report generator plugin to the configuration file for the test runner. For example, Jest has a built-in reporter called jest-junit that can generate a JUnit-style report. Run your Playwright tests using the test runner configured with the report generator plugin. The test runner will generate a report file in the format specified by the plugin. View the report file to see the test results. The report file will typically include information such as the number of tests that passed, failed, or skipped, as well as details about any errors that occurred during the tests.By generating reports of your Playwright tests, you can easily track the progress of your tests and identify any issues that need to be addressed. This can help you ensure that your web application is functioning correctly and meeting your requirements.
What is the use of Playwright?
Playwright can be used for several purposes, including:Playwright can simulate user interactions such as clicking, scrolling, and filling in forms to ensure that web applications are functioning correctly. Playwright can test web applications on different browsers and browser versions to ensure that they work consistently across all platforms. Playwright can measure the performance of web applications by simulating user interactions and measuring response times.Playwright can be used to automate repetitive tasks such as web scraping or filling in forms.

Did you find this page helpful?

Helpful

NotHelpful

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud