用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wojons/skills --skill testing-compatibility命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | testing-compatibility |
| description | Test application compatibility across browsers, devices, and platforms |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Test application compatibility across browsers, devices, operating systems, and environments, coordinating with functional and visual testing.
Use this skill when:
Cross-browser testing:
Cross-platform testing:
Device and environment testing:
Coordinate with other test types:
# Cross-browser testing
npm run test:compatibility:browsers # All supported browsers
npx playwright test --browser=all # Playwright multi-browser
npx cypress run --browser chrome --browser firefox
# Device testing
npm run test:compatibility:devices # Responsive testing
npx playwright test --device="iPhone 13"
npx lighthouse https://app.example.com --screenEmulation.mobile=true
# Platform testing
npm run test:compatibility:os # OS-specific testing
# Use CI with different OS runners
# Network condition testing
npm run test:compatibility:network # Simulate network conditions
npx lighthouse --throttling.cpuSlowdownMultiplier=4
# Coordinate with functional tests
npm run test:compatibility -- --grep "functional"
npm run test:e2e:compatibility # E2E across platforms
Compatibility Test Results:
──────────────────────────────
Test Matrix: 15 combinations (browsers × devices × OS)
Browser Compatibility:
✅ Chrome 120+: All functional tests pass
✅ Firefox 115+: All functional tests pass
✅ Safari 16+: 42/45 tests pass
⚠️ 3 tests fail due to WebRTC differences
✅ Edge 119+: All functional tests pass
Device Compatibility:
✅ Desktop (1920×1080): All tests pass
✅ Tablet (iPad): 38/40 tests pass
⚠️ 2 touch gesture tests need adjustment
✅ Mobile (iPhone/Android): 35/40 tests pass
❌ 5 tests fail due to viewport issues
Operating Systems:
✅ Windows 10/11: All tests pass
✅ macOS 12+: All tests pass
✅ Linux (Ubuntu): All tests pass
✅ iOS 15+: 40/45 tests pass
✅ Android 11+: 42/45 tests pass
Network Conditions:
✅ WiFi: All tests pass
✅ 4G: 45/50 tests pass
✅ 3G: 30/50 tests pass (expected performance degradation)
Integration with Other Tests:
- Functional tests: Compatible across 85% of matrix
- Visual tests: 95% consistency across browsers
- Accessibility tests: WCAG compliance maintained
- Performance tests: Metrics vary by platform (documented)
Recommendation:
- Fix Safari WebRTC and mobile viewport issues
- Add polyfills for older browser support if needed
- Document known compatibility limitations