Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

qa-testing-iosQA 测试 iOS

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

2,868

周安装

116

GitHub Stars

60

下载量

1,195
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:qa-testing-ios(QA 测试 iOS)
来源仓库:https://github.com/vasilyu1983/ai-agents-public
仓库路径:skills/qa-testing-ios
安装命令:
npx skills add https://github.com/vasilyu1983/ai-agents-public --skill qa-testing-ios
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vasilyu1983/ai-agents-public --skill qa-testing-ios

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免为通过测试而改坏真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网或文件读写。

SKILL.md

QA Testing (iOS)

Use xcodebuild + Xcode Simulator (simctl) to build, run, and stabilize iOS tests.

Primary docs: XCTest, Swift Testing, simctl, Xcode testing

Inputs to Confirm

  • Xcode entrypoint: -workspace or -project
  • -scheme (and optional -testPlan)
  • Destination(s): simulator name + iOS runtime (or OS=latest), and whether real devices are required
  • UI-test hooks: launch arguments/env toggles (stubs, demo data, auth bypass, disable animations)
  • Artifact needs: xcresult, coverage, screenshots/video, logs

Quick Commands

TaskCommand
List schemesxcodebuild -list -workspace MyApp.xcworkspace
List simulatorsxcrun simctl list devices
List devices (USB)xcrun xctrace list devices
Boot simulatorxcrun simctl boot "iPhone 15 Pro"
Wait for bootxcrun simctl bootstatus booted -b
Build appxcodebuild build -scheme MyApp -sdk iphonesimulator
Install appxcrun simctl install booted app.app
Run testsxcodebuild test -scheme MyApp -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=latest' -resultBundlePath TestResults.xcresult
Run tests (device)xcodebuild test -scheme MyApp -destination 'platform=iOS,id=<UDID>' -resultBundlePath TestResults.xcresult
Reset simulatorsxcrun simctl shutdown all && xcrun simctl erase all
Take screenshotxcrun simctl io booted screenshot screenshot.png
Record videoxcrun simctl io booted recordVideo recording.mov

Workflow

  1. Resolve build inputs (workspace/project, scheme, testPlan, destinations).
  2. Make simulator state repeatable: shutdown/erase as needed, boot, and wait for boot.
  3. Run tests with artifacts enabled (-resultBundlePath); parallelize and retry only when appropriate.
  4. Triage failures from the xcresult bundle; confirm flakes with repetition; quarantine with an owner and reproduction steps.

xcodebuild Patterns

  • Select tests to reproduce: -only-testing:TargetTests/ClassName/testMethod and -skip-testing:TargetTests/FlakyClass.
  • Prefer test plans for large suites: -testPlan <plan> (keeps device/config/runs consistent).
  • Enable parallel testing when suites are isolation-safe: -parallel-testing-enabled YES (+ -maximum-parallel-testing-workers N).
  • Always write a result bundle in automation: -resultBundlePath TestResults.xcresult.
  • For reruns, split build and test: xcodebuild build-for-testing... then xcodebuild test-without-building....
  • Inspect results locally: open TestResults.xcresult or xcrun xcresulttool get --path TestResults.xcresult --format json.

Flake Triage (Repetition and Retry)

  • Prefer repetition to prove flake rate before adding retries.
  • Use targeted reruns before suite-wide retries.

Common patterns (flags vary by Xcode version):

  • Retry failing tests once in CI: -retry-tests-on-failure -test-iterations 2
  • Measure flakiness until first failure: -test-iterations 50 -test-repetition-mode until-failure
  • Run a single test repeatedly: -only-testing:TargetTests/ClassName/testMethod -test-iterations 20

Testing Layers

LayerFrameworkScope
UnitXCTest / Swift TestingBusiness logic (fast)
SnapshotXCTest + snapshot libsView rendering
IntegrationXCTestPersistence, networking
UIXCUITestCritical user journeys

Device Matrix

  • Default: simulators for PR gates; real devices for release
  • Cover: one small phone, one large phone, iPad if supported
  • Add OS versions only for multiple major release support

Flake Control

Use these defaults unless the project requires otherwise:

  • Disable or reduce animations in UI-test builds.
  • Fix locale/timezone (via launch arguments or app-level configuration).
  • Stub network at the boundary (avoid real third-party calls in UI tests).
  • Reset app state between tests (fresh install, deep-link reset, or explicit teardown).
  • Prefer state-based waits (waitForExistence, expectations) over sleeps.
  • Pre-grant/reset permissions where possible (simulators): xcrun simctl privacy booted grant....

CI Integration (GitHub Actions)

name: iOS CI
on: [push, pull_request]
jobs:
  test:
    runs-on: macos-15
    steps:
      - uses: actions/checkout@v4
      - uses: maxim-lobanov/setup-xcode@v1
        with:
          xcode-version: "16.0"
      - run: |
          set -euo pipefail
          xcodebuild test \
            -scheme MyApp \
            -sdk iphonesimulator \
            -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=latest' \
            -resultBundlePath TestResults.xcresult
      - uses: actions/upload-artifact@v4
        if: always()
        with:
          name: test-results
          path: TestResults.xcresult

Do / Avoid

Do

  • Make UI tests independent and idempotent
  • Use test data builders and dedicated test accounts
  • Collect xcresult bundles on failure
  • Use accessibilityIdentifier, not labels

Avoid

  • Relying on test ordering or global state
  • UI tests requiring real network
  • Thread.sleep() for synchronization
  • Accepting AI-proposed selectors without validation

Resources

ResourcePurpose
references/swift-testing.mdSwift Testing framework
references/simulator-commands.mdComplete simctl reference
references/xctest-patterns.mdXCTest/XCUITest patterns
references/xcuitest-patterns.mdXCUITest UI testing patterns
references/snapshot-testing-ios.mdVisual snapshot testing
references/ios-ci-optimization.mdCI pipeline optimization

Templates

TemplatePurpose
assets/template-ios-ui-test-stability-checklist.mdStability checklist

Related Skills

SkillPurpose
software-mobileiOS development
qa-testing-strategyTest strategy
qa-testing-mobileCross-platform mobile

Fact-Checking

  • Use web search/web fetch to verify current external facts, versions, pricing, deadlines, regulations, or platform behavior before final answers.
  • Prefer primary sources; report source links and dates for volatile information.
  • If web access is unavailable, state the limitation and mark guidance as unverified.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.49%
按下载量换算317

Cursor

22.09%
按下载量换算264

Antigravity

18.54%
按下载量换算222

OpenCode

14.75%
按下载量换算176

Gemini CLI

7.49%
按下载量换算90

Codex

3.25%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills