@sridharkikkeri/playwright-common 1.0.46 → 1.0.47
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/create-healthedge-tests.js +20 -1
- package/package.json +1 -1
|
@@ -76,7 +76,8 @@ const packageJson = {
|
|
|
76
76
|
dependencies: {
|
|
77
77
|
'@playwright/test': '^1.42.0',
|
|
78
78
|
'allure-playwright': '^3.4.5',
|
|
79
|
-
'playwright': '^1.42.0'
|
|
79
|
+
'playwright': '^1.42.0',
|
|
80
|
+
'@playwright/mcp-server': 'latest'
|
|
80
81
|
},
|
|
81
82
|
devDependencies: {
|
|
82
83
|
'@typescript-eslint/eslint-plugin': '^8.55.0',
|
|
@@ -295,6 +296,24 @@ npm run screenshot <url> # Take screenshot of URL
|
|
|
295
296
|
npm run pdf <url> # Generate PDF of URL
|
|
296
297
|
\`\`\`
|
|
297
298
|
|
|
299
|
+
## AI Agents & Skills (Experimental)
|
|
300
|
+
|
|
301
|
+
This project includes Playwright MCP Server with AI Agents:
|
|
302
|
+
|
|
303
|
+
**Agents:**
|
|
304
|
+
- 🤖 **Planner** - Plans test scenarios
|
|
305
|
+
- 🔧 **Generator** - Generates test code
|
|
306
|
+
- 🩹 **Healer** - Auto-fixes failing tests
|
|
307
|
+
|
|
308
|
+
**Skills:**
|
|
309
|
+
- Run tests
|
|
310
|
+
- Inspect DOM
|
|
311
|
+
- Generate selectors
|
|
312
|
+
- Heal failures
|
|
313
|
+
- Seed environment
|
|
314
|
+
|
|
315
|
+
See [Playwright CLI Agents](https://github.com/microsoft/playwright-cli) for setup.
|
|
316
|
+
|
|
298
317
|
## Environment-Specific Tests
|
|
299
318
|
|
|
300
319
|
\`\`\`bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sridharkikkeri/playwright-common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.47",
|
|
4
4
|
"description": "Production-grade Playwright framework with AI-powered self-healing, visual regression, and enterprise features",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|