From a94fa656c3908655e3edfcfb0dea65861c2291db Mon Sep 17 00:00:00 2001
From: "microsoft-playwright-automation[bot]"
<203992400+microsoft-playwright-automation[bot]@users.noreply.github.com>
Date: Tue, 7 Oct 2025 20:51:14 +0000
Subject: [PATCH] feat(roll): roll to ToT Playwright (07-10-25)
---
nodejs/docs/release-notes.mdx | 8 ++++----
nodejs/docs/test-agents.mdx | 13 +++++++++----
2 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/nodejs/docs/release-notes.mdx b/nodejs/docs/release-notes.mdx
index eb8caf71752..aa90f9a68ae 100644
--- a/nodejs/docs/release-notes.mdx
+++ b/nodejs/docs/release-notes.mdx
@@ -11,11 +11,11 @@ import LiteYouTube from '@site/src/components/LiteYouTube';
## Version 1.56
-
+
-### Playwright Agents
+### Playwright Test Agents
-Introducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:
+Introducing Playwright Test Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:
* **🎠planner** explores the app and produces a Markdown test plan
* **🎠generator** transforms the Markdown plan into the Playwright Test files
* **🎠healer** executes the test suite and automatically repairs failing tests
@@ -32,7 +32,7 @@ npx playwright init-agents --loop=claude
npx playwright init-agents --loop=opencode
```
-[Learn more about Playwright Agents](./test-agents.mdx)
+[Learn more about Playwright Test Agents](./test-agents.mdx)
### New APIs
- New methods [page.consoleMessages()](/api/class-page.mdx#page-console-messages) and [page.pageErrors()](/api/class-page.mdx#page-page-errors) for retrieving the most recent console messages from the page
diff --git a/nodejs/docs/test-agents.mdx b/nodejs/docs/test-agents.mdx
index 27ac206cf7a..634d9490636 100644
--- a/nodejs/docs/test-agents.mdx
+++ b/nodejs/docs/test-agents.mdx
@@ -8,22 +8,22 @@ import HTMLCard from '@site/src/components/HTMLCard';
import LiteYouTube from '@site/src/components/LiteYouTube';
-# Playwright Agents
+# Playwright Test Agents
## Introduction
-Playwright comes with three Playwright Agents out of the box: **🎠planner**, **🎠generator** and **🎠healer**.
+Playwright comes with three Playwright Test Agents out of the box: **🎠planner**, **🎠generator** and **🎠healer**.
These agents can be used independently, sequentially, or as the chained calls in the agentic loop. Using them sequentially will produce test coverage for your product.
* **🎠planner** explores the app and produces a Markdown test plan
* **🎠generator** transforms the Markdown plan into the Playwright Test files
* **🎠healer** executes the test suite and automatically repairs failing tests
-
+
### Getting Started
-Start with adding Playwright Agent definitions to your project using the `init-agents` command. These definitions should be regenerated whenever Playwright is updated to pick up new tools and instructions.
+Start with adding Playwright Test Agent definitions to your project using the `init-agents` command. These definitions should be regenerated whenever Playwright is updated to pick up new tools and instructions.
+:::note
+
+VS Code v1.105 (currently on the [VS Code Insiders channel](https://code.visualstudio.com/insiders/)) is needed for the agentic experience in VS Code. It will become stable shortly, we are a bit ahead of the curve with this functionality!
+:::
+
Once the agents have been generated, you can use your AI tool of choice to command these agents to build Playwright Tests.
## 🎠Planner