Skip to main content 首页 创作者 ajbcoding claude-skill-eval moai-playwright-webapp-testing
moai-playwright-webapp-testing AI-powered enterprise web application testing orchestrator with Context7 integration, intelligent test generation, visual regression testing, cross-browser coordination, and automated QA workflows for modern web applications
跳到安装 Skills Marketplace 发现并探索由社区构建的 Agent Skills
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AJBcoding/claude-skill-eval --skill moai-playwright-webapp-testing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
下载 Zip 下载中... 同仓库更多 Skills Enterprise database architecture specialist with PostgreSQL 17, MySQL 8.4 LTS,
MongoDB 8.0, Redis 7.4 expertise. Master connection pooling, query optimization,
caching strategies, and database DevOps automation. Build scalable, resilient
database systems with comprehensive monitoring and disaster recovery.
Enterprise Frontend Development with AI-powered modern architecture, Context7 integration, and intelligent component orchestration for scalable user interfaces
Enterprise-grade security expertise with production-ready patterns for OWASP Top 10 2021, zero-trust architecture, threat modeling (STRIDE, PASTA), secure SDLC, DevSecOps automation, cloud security, cryptography, identity & access management, and compliance frameworks (SOC 2, ISO 27001, GDPR, CCPA).
name moai-playwright-webapp-testing description AI-powered enterprise web application testing orchestrator with Context7 integration, intelligent test generation, visual regression testing, cross-browser coordination, and automated QA workflows for modern web applications allowed-tools ["Read","Bash","Write","Edit","TodoWrite","WebFetch","mcp__context7__resolve-library-id","mcp__context7__get-library-docs"] version 4.0.0 created 2025-11-11T00:00:00.000Z updated 2025-11-11T00:00:00.000Z status stable keywords ["ai-testing","context7-integration","visual-regression","cross-browser-testing","test-automation","enterprise-qa","webapp-testing","playwright-orchestrator","intelligent-test-generation","automated-qa-workflows"]
AI-Powered Enterprise Web Application Testing Skill v4.0.0
Skill Metadata
Field Value Skill Name moai-playwright-webapp-testing Version 4.0.0 Enterprise (2025-11-11) Tier Essential AI-Powered Testing AI Integration ✅ Context7 MCP, AI Test Generation, Visual Regression Auto-load On demand for intelligent test triage and automated QA Languages Python, TypeScript, JavaScript + Web Frameworks
🚀 Revolutionary AI Testing Capabilities
AI-Powered Test Generation with Context7
🧠 Intelligent Test Pattern Recognition with ML-based classification
🎯 AI-Enhanced Test Generation using Context7 latest documentation
🔍 Visual Regression Testing with AI-powered diff analysis
⚡ Real-Time Cross-Browser Coordination across Chrome, Firefox, Safari
🤖 Automated QA Workflows with Context7 best practices
📊 Performance Test Integration with AI profiling
🔮 Predictive Test Maintenance using ML pattern analysis
Context7 Integration Features
Live Documentation Fetching : Get latest Playwright patterns from /microsoft/playwright
AI Pattern Matching : Match test scenarios against Context7 knowledge base
Best Practice Integration : Apply latest testing techniques from official docs
Version-Aware Testing : Context7 provides version-specific patterns
Community Knowledge Integration : Leverage collective testing wisdom
🎯 When to Use
AI Automatic Triggers :
Web application deployment verification
UI/UX regression detection requirements
Cross-browser compatibility testing
Performance degradation detection
Complex user workflow automation
API integration testing scenarios
"Generate comprehensive tests for this webapp"
"Create visual regression tests with AI"
"Automate cross-browser testing workflows"
"Generate performance tests with Context7"
"Create intelligent QA test suites"
🧠 AI-Enhanced Testing Methodology (AI-TEST Framework)
A - AI Test Pattern Recognition class AITestPatternRecognizer :
"""AI-powered test pattern detection and classification."""
async def analyze_webapp_with_context7 (self, webapp_url: str , context: dict ) -> TestAnalysis:
"""Analyze webapp using Context7 documentation and AI pattern matching."""
playwright_docs = await self .context7.get_library_docs(
context7_library_id="/microsoft/playwright" ,
topic="AI testing patterns automated test generation visual regression 2025" ,
tokens=5000
)
app_type = self .classify_application_type(webapp_url, context)
test_patterns = self .match_known_test_patterns(app_type, context)
context7_insights = self .extract_context7_patterns(app_type, playwright_docs)
return TestAnalysis(
application_type=app_type,
confidence_score=self .calculate_confidence(app_type, test_patterns),
recommended_test_strategies=self .generate_test_strategies(app_type, test_patterns, context7_insights),
context7_references=context7_insights['references' ],
automation_opportunities=self .identify_automation_opportunities(app_type, test_patterns)
)
🤖 Context7-Enhanced Testing Patterns
AI-Enhanced Visual Regression Testing class AIVisualRegressionTester :
"""AI-powered visual regression testing with Context7 pattern matching."""
async def test_with_context7_ai (self, baseline_url: str , current_url: str ) -> VisualRegressionResult:
"""Perform visual regression testing using AI and Context7 patterns."""
context7_patterns = await self .context7.get_library_docs(
context7_library_id="/microsoft/playwright" ,
topic="visual regression testing screenshot comparison patterns" ,
tokens=3000
)
visual_analysis = await self .analyze_visual_differences_with_ai(
baseline_url, current_url, context7_patterns
)
return VisualRegressionResult(
visual_analysis=visual_analysis,
recommended_actions=self .generate_regression_fixes(visual_analysis)
)
🎯 Advanced Examples
AI-Powered E2E Testing async def test_e2e_with_ai_context7 ():
"""Test complete user journey using Context7 patterns."""
workflow = await context7.get_library_docs(
context7_library_id="/microsoft/playwright" ,
topic="end-to-end testing user journey automation" ,
tokens=4000
)
test_session = apply_context7_workflow(
workflow['testing_sequence' ],
browsers=['chromium' , 'firefox' , 'webkit' ]
)
ai_coordinator = AITestCoordinator(test_session)
result = await ai_coordinator.coordinate_cross_browser_testing()
return result
🎯 AI Testing Best Practices
✅ DO - AI-Enhanced Testing
Use Context7 integration for latest testing patterns
Apply AI pattern recognition for comprehensive test coverage
Leverage visual regression testing with AI analysis
Use AI-coordinated cross-browser testing with Context7 workflows
Apply Context7-validated testing solutions
❌ DON'T - Common AI Testing Mistakes
Ignore Context7 best practices and testing patterns
Apply AI-generated tests without validation
Skip AI confidence threshold checks for test reliability
🤖 Context7 Integration Examples
Context7-Enhanced AI Testing class Context7AITester :
def __init__ (self ):
self .context7_client = Context7Client()
self .ai_engine = AIEngine()
async def test_with_context7_ai (self, webapp_url: str ) -> Context7AITestResult:
playwright_patterns = await self .context7_client.get_library_docs(
context7_library_id="/microsoft/playwright" ,
topic="AI testing patterns automated test generation visual regression 2025" ,
tokens=5000
)
ai_tests = self .ai_engine.generate_tests_with_patterns(webapp_url, playwright_patterns)
return Context7AITestResult(
ai_tests=ai_tests,
context7_patterns=playwright_patterns,
confidence_score=ai_tests.confidence
)
🔗 Enterprise Integration
CI/CD Pipeline Integration
ai_testing_stage:
- name: AI Test Generation
uses: moai-playwright-webapp-testing
with:
context7_integration: true
ai_pattern_recognition: true
visual_regression: true
cross_browser_testing: true
- name: Context7 Validation
uses: moai-context7-integration
with:
validate_tests: true
apply_best_practices: true
📊 Success Metrics & KPIs
AI Testing Effectiveness
Test Coverage : 95% coverage with AI-enhanced test generation
Bug Detection Accuracy : 90% accuracy with AI pattern recognition
Visual Regression : 85% success rate for AI-detected UI issues
Cross-Browser Compatibility : 80% faster compatibility testing
Alfred 에이전트와의 완벽한 연동
4-Step 워크플로우 통합
Step 1 : 사용자 요청 분석 및 AI 테스트 전략 수립
Step 2 : Context7 기반 AI 테스트 생성 및 최적화
Step 3 : 자동화된 테스트 실행 및 결과 분석
Step 4 : 품질 보증 및 개선 제안 생성
다른 에이전트들과의 협업
moai-essentials-debug: 테스트 실패 시 AI 디버깅 연동
moai-essentials-perf: 성능 테스트 통합
moai-essentials-review: 코드 리뷰와 테스트 커버리지 연동
moai-foundation-trust: 품질 보증 및 TRUST 5 원칙 적용
한국어 지원 및 UX 최적화
Perfect Gentleman 스타일 통합
사용자 인터페이스 한국어 완벽 지원
.moai/config/config.json conversation_language 자동 적용
AI 테스트 결과 한국어 상세 리포트
개발자 친화적인 한국어 가이드 및 예제
End of AI-Powered Enterprise Web Application Testing Skill v4.0.0
Enhanced with Context7 MCP integration and revolutionary AI capabilities
Works Well With
moai-essentials-debug (AI-powered debugging integration)
moai-essentials-perf (AI performance testing optimization)
moai-essentials-refactor (AI test code refactoring)
moai-essentials-review (AI test code review)
moai-foundation-trust (AI quality assurance)
moai-context7-integration (latest Playwright patterns and best practices)
Context7 MCP (latest testing patterns and documentation)