@vabole/xcuitest

API reference: XCUITest. Query for element queries, waiting patterns, Swift 6 @MainActor, assertions, screenshots, launch arguments.

View in AI SkillSafe app
Scanned · no findings
0 downloads
0 stars
0 demos
SKILL.md
namexcuitest
user-invocabletrue
descriptionAPI reference: XCUITest. Query for element queries, waiting patterns, Swift 6 @MainActor, assertions, screenshots, launch arguments.
contextfork
agentExplore

XCUITest Reference

Comprehensive reference for writing reliable XCUITest UI tests in Swift 6.

Quick Reference

// Basic test structure
@MainActor
final class MyUITests: XCTestCase {
    var app: XCUIApplication!

    override func setUp() {
        super.setUp()
        continueAfterFailure = false
        app = XCUIApplication()
        app.launch()
    }

    func testExample() {
        let button = app.buttons["Submit"]
        XCTAssertTrue(button.waitForExistence(timeout: 5))
        button.tap()
    }
}

Topic Guides

Curated guidance with code examples (grep-friendly):

File Content
element-queries.md Core API classes: XCUIApplication, XCUIElement, XCUIElementQuery, XCUICoordinate
interactions.md Taps, presses, text input, swipes, coordinate-based and other gestures
waiting.md waitForExistence, XCTWaiter, non-existence, property waits, Xcode 26 KeyPath waits
swift6-concurrency.md Swift 6 strict concurrency: @MainActor test classes, async setUp/tearDown, nonisolated
assertions.md XCTAssert patterns, custom messages, existence checks
screenshots.md Screenshots, XCTAttachment, screenshot-on-failure, extracting from .xcresult
launch-arguments.md Launch arguments/environment, UserDefaults override, localization and accessibility testing
permissions.md resetAuthorizationStatus, XCUIProtectedResource, interruption monitors, springboard/system alerts
test-helpers.md Page Object Model, reusable helpers, timeout constants
troubleshooting.md Common failures (element not found, flaky tests) and what's new in Xcode 26 / iOS 26
patterns.md Advanced patterns: base test class, system dialogs, scroll/wait, debugging, test organization

Downloaded Reference Files

Apple documentation pages available locally:

File Content
xctest-index.md Full XCTest framework index
xcuiautomation-index.md Full XCUIAutomation framework index
xcuiapplication.md XCUIApplication class
xcuielement.md XCUIElement class
xcuielementquery.md XCUIElementQuery class
xcuicoordinate.md XCUICoordinate class
xcuiprotectedresource.md XCUIProtectedResource enum
xcuiscreenshot.md XCUIScreenshot class

Sources

Apple Documentation

WWDC Sessions

Community Resources

Fetching More Apple Docs

  1. Search this skill's local .md files first.
  2. If the topic is not here, check the other installed Apple skills you have available by their names, descriptions, or SKILL.md frontmatter, then grep their local files. This is faster and uses less context than fetching new docs from the internet.
  3. If no installed skill has the page, use the relevant documentation path from the local XCTest or XCUIAutomation indexes with the sosumi.ai Markdown mirror. For example, /documentation/xcuiautomation/xcuielement maps to https://sosumi.ai/documentation/xcuiautomation/xcuielement.

Embed badges

Add these to your README to show the skill's verification status.

SkillSafe verified badge
Verified badge
[![SkillSafe verified badge](https://api.skillsafe.ai/v1/badge/@vabole/xcuitest/verified)](https://skillsafe.ai/skill/@vabole/xcuitest/)
Installs badge
Installs badge
[![Installs badge](https://api.skillsafe.ai/v1/badge/@vabole/xcuitest/installs)](https://skillsafe.ai/skill/@vabole/xcuitest/)
Scan badge
Scan badge
[![Scan badge](https://api.skillsafe.ai/v1/badge/@vabole/xcuitest/scan)](https://skillsafe.ai/skill/@vabole/xcuitest/)
Eval pass rate badge
Eval pass rate
[![Eval pass rate badge](https://api.skillsafe.ai/v1/badge/@vabole/xcuitest/eval)](https://skillsafe.ai/skill/@vabole/xcuitest/)