playwright-codegen-pro-core 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
-
# playwright-core
|
|
1
|
+
# playwright-codegen-pro-core
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Internal core engine for [playwright-codegen-pro](https://www.npmjs.com/package/playwright-codegen-pro).
|
|
4
|
+
|
|
5
|
+
This package is not intended to be installed directly. Install `playwright-codegen-pro` instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g playwright-codegen-pro
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This is a fork of `playwright-core` (`1.59.0-next`) with the following additions:
|
|
12
|
+
- `NetworkCapture` — classifies browser requests into direct/pageLoad/noise buckets
|
|
13
|
+
- `SessionRedactor` — strips passwords, tokens, and credit card numbers from captured data
|
|
14
|
+
- `SessionPromptBuilder` — builds structured AI prompts from recorded sessions
|
|
15
|
+
- `recorder_get_session` MCP tool — exposes the live session to AI assistants
|
|
16
|
+
- `--ai-codegen` always-on codegen mode with live `.playwright-session.md` output
|
package/package.json
CHANGED