How to start with Playwright Debugging?
By Ganesh Hegde, Community Contributor - May 12, 2023
Test Automation is gaining prominence every day, as companies prefer a Test Automation Suite for faster software development. Many frameworks, like Selenium, Cypress, Puppeteer, etc. support test automation. Playwright by Microsoft is another Test Automation framework for web application testing. It is the newest addition to widespread use of Headless Browser Testing frameworks.
What is Playwright?
Playwright is an open-source test automation tool shipped with an Apache license. While Playwright launches browsers in the headless mode by default, it can also run them in headful mode. By passing a flag, when the browser is launched, Playwright can be used to run browsers in the headful mode for tests.
Browsers supported for Playwright
- It has gained traction due to benefits, such as support for multiple languages such as Java, C#, NodeJS, and Python.
- Playwright tests can be run on Firefox, Webkit, and Chromium-based browsers.
- It is compatible with Windows, Linux, and macOS and can be integrated with primary CI/CD servers such as Jenkins, CircleCI, Azure Pipeline, TravisCI, etc.
Note: With BrowserStack, Playwright Browser Compatibility extends to WebKit, Mozilla Firefox, and Chromium for Playwright versions 1.10.0 – 1.25.1
What is Debugging, and why is it important?
Debugging is finding the root cause of the issue and resolving it. It is vital to the testing process because of it:
- Helps resolve the issues quickly
- Identify the exact root cause
- Eliminates complexities
- Serves as proof to analyze the software quality
- It provides a way to validate functionality by applying dynamic values
A debugging process consists of the following steps:
- Note down the error
- Assume the error location based on the expertise
- Set the debugger breakpoints
- Analyze the code during run time step by step.
- Find the exact location that is causing the issue
- Fix the line of code which is causing the issue
- Validate the code for a successful fix of the error.
How to run Playwright debug mode?
One of the key features of Playwright is debugging tests in the following ways:
- Playwright Inspector
- Playwright Trace Viewer
- Browser Developer Tools
- Visual Studio Code debugger
- Verbose API logs
Debugging using Playwright Inspector
What is a Playwright Inspector?
Playwright Inspector is a GUI tool that comes with the framework by default, and no additional configuration is required to use this tool.
To launch your test with Playwright Inspector mode, you need to prefix the test command with PWDEBUG=1 depending on the command-line tool you are using, the syntax might differ.
Powershell
$env:PWDEBUG=1 npx run test
Bash
PWDEBUG=1 npx run test
Batch
set PWDEBUG=1 npx run test
Once you enter the command, the UI window also known as Inspector windows opens and shows the line is being executed. You can debug the test line by line using this window.
Points to Remember when using PWDEBUG=1 flag:
- The browser launches in headed mode by default.
- There will be no default time-out.
- Playwright Inspector window is split into two parts: the upper part shows your code, and the lower part code shows the execution log.
- The Playwright provides two options either you can resume the script or you can step over.
- If you want to pause the test at the desired line use await page.pause(); in your script.
- If you add the await page.pause() playwright automatically opens the Inspector Window even though you have not set the PWDEBUG=1 flag.
Any time, if you don’t want to attach the Playwright inspector, change the PWDEBUG flag to 0 i.e PWDEBUG=0
Recording Scripts using Playwright Inspector Tool
Sometimes you might find it challenging to understand how the locators simulate flows using scripts. Playwright Inspector Tool also provides a command called codegen, Popularly known as Playwright codegen that allows us to record the scripts automatically.
The codegen is like a recording tool. However, you can use this to generate complex scripts and later paste them inside our test case.
From the terminal, you can enter the below command to record the tests using Playwright Codegen Tool
npx playwright codegen <webpage_url>
Example:
npx playwright codegen browserstack.com
Once the above command is entered in the terminal, the Playwright inspector window launches. The record button in the inspector window helps to start or stop the recording at any desired point. As the browser opens baseURL, you can navigate the actions or workflows.
Upon completing the recording, stop the recording, Save/Copy the recorded script, and close the Playwright inspector window.
Playwright Debugging using Browser Developer Tools
DevTools are part of the browser, which enables easy debugging. While most browsers have this functionality, the shortcut key might differ from browser to browser. On your browser window right click and choose inspect element. If you are using a chromium-based browser, you can also choose CTRL +SHIFT + I or F12 to open DevTools windows.
Browser Developer tools are popularly known as DevTools. The browser developer tools are still accessible when running playwright tests.
Some of the actions that can be performed using Browser Developer Tools are:
- Inspect DOM Element
- Run commands in the browser console.
- Check console logs during execution
- Verify Network calls/requests in the Network tab
Apart from the actions listed above, any action that can be performed on a normal browser while working with webpages can be done using browser developer tools with Playwright.
Working with Playwright Object in Browser Developer Tools console (Chrome DevTools Console).
The Playwright allows you to highlight selectors in your browser console with the Playwright object. This is the most useful option, it helps debug locators and view the locators rendered during run time.
To utilize this option, Playwright needs to be launched in debug mode as explained above (using PWDEBUG=1 flag). Once you launch the Playwright test with debug mode, the Playwright Object is available in the browser console.
There are many ways to highlight the locators using playwright objects, such as:
- playwright.$(selector): Highlights the first occurrence of the selector. This is equivalent to a page.$ usage in the script.
- playwright.$$(selector): Highlights all occurrences of the selector. This is equivalent to a page.$$ usage in the script.
- playwright.inspect(selector): Inspects the selector in the Elements panel.
- playwright.locator(selector): Highlights the first occurrence of the locator.
- playwright.clear(): Clears existing highlights.
- playwright.selector(element): Generates a selector that points to the element.
Example:
playwright.$("a[href='/docs/intro']")
The above command in the browser console highlights the web element containing with locator a[href=’/docs/intro’]
Playwright Debugging using Visual Studio Code
Playwright works well with Visual Studio Code. Suppose you are familiar with Java or C# and seek to debug using IDE breakpoints or the traditional debugging style by setting and unsetting breakpoints. In that case, Playwright provides the same way of debugging options.
To debug Playwright scripts using VS Code, follow the below steps.
Step 1: Navigate to Visual Studio Code Run Menu > Click on Add Configuration
Step 2: Choose NodJS as an Environment
Step 3: The launch.json will be created inside our project folder automatically. You can check the file under
<Project_Folder>/.vscode/launch.json
Step 4: Edit launch.json file and enter the below code to it.
{ "version": "0.2.0", "configurations": [ { "type": "pwa-node", "request": "launch", "name": "Launch Program", "skipFiles": [ "<node_internals>/**" ], "program": "${file}", "runtimeExecutable": "npm", "runtimeArgs": [ "run-script", "test" ], } ] }
Step 5: Add test command/value to script property in package.json. The package.json should be located in the project root directory (Note: If package.json is not available in your Project root directory, then you can create one using npm init command). Enter the below code to the package.json and save the configuration.
"scripts": { "test": "npx playwright test --headed" }
Step 6: Run with Configuration in Visual Studio Code by following the below steps
- Set the breakpoint in your code with VSCode IDE
- Launch the test with Run (Menu) > Start Debugging or F5
- The test starts with the debugger attached, the test execution should halt when it hits your breakpoint.
Debugging Playwright Tests with Trace Viewer
Trace Viewer is another functionality that can be used while Playwright debugging. Trace Viewer is a GUI tool that shows the traces recorded during test execution. Trace viewers can be opened using CLI or on the browser.
Recording Trace in Playwright
To record Trace, you need to configure it in the Global config file, and then follow these steps:
Step 1: Create a Global Playwright Config File i.e playwright.config.ts
Step 2: Place the playwright.config.ts under the Project root directory
Step 3: Add the below code in it
// playwright.config.ts import { PlaywrightTestConfig } from '@playwright/test'; const config: PlaywrightTestConfig = { use:{ trace:'on' }, }; export default config;
In the above code, the trace option has on value, likewise, you can provide different values from the list of available options for trace
- ‘off’ – Do not record a trace.
- ‘on’ – Record a trace for each test.
- ‘retain-on-failure’ – Record a trace for each test, but remove it from successful test runs.
- ‘on-first-retry’ – Record a trace only when retrying a test for the first time.
Once you run the test after configuring the trace option to the global config file. Trace will be recorded and stored in the test-results directory.
Traces of your tests will be recorded action-wise. Each action contains
- action snapshots,
- action log,
- source code location,
- network log for this action
Viewing Traces in Playwright
You can view the recorded Traces by following the below steps:
Step 1: Run/Execute your test
Step 2: Look for traces.zip inside your test-results folder
Step 3: From CLI you can enter the path to trace file in the following format
npx playwright show-trace <path_to_trace.zip_directory>/trace.zip
For Example:
npx playwright show-trace test-results\tests-example-basic-test\trace.zip
Step 4: Open trace.zip from the browser (Optional). Navigate to https://trace.playwright.dev/ and then drag and drop the trace.zip folder as seen below
Debug tests with Playwright Verbose Logging
Amidst the several debugging options provided by Playwright, Verbose logging is another way to debug Playwright tests where the QA can see the verbose logs and analyze the scripts.
Enabling Verbose Logging in Playwright
The enabling of verbose logging depends on which type of CLI/Terminal you use.
Enable Verbose Logging with Bash
DEBUG=pw:api npx playwright test
Enable Verbose Logging with Powershell
$env:DEBUG="pw:api" npx playwright test
Enable Verbose Logging with Batch
set DEBUG=pw:api npx playwright test
Once you enable the Verbose Log, Playwright continuously feeds the logs to the command line so you can see what’s happening during the script execution.
Conclusion
While Playwright offers different debugging options for tests, it is up to you to choose the most suitable way to debug your tests to deliver a high-quality web application. No matter which debugging option you opt for, it is crucial to consider the real user conditions which only possible by testing on real devices.
- Access 3000+ browser-device-OS combinations to integrate Playwright tests with BrowserStack Automate.
- It can be integrated with CI/CD pipelines like Jenkins, Travis CI, CircleCI, Gitlab, Azure, Bamboo, etc., and help Agile teams run Parallel tests for a faster and more accurate testing experience.