xcuitest

Installation
SKILL.md

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()
    }
Installs
349
GitHub Stars
275
First Seen
Mar 22, 2026
xcuitest — vabole/apple-skills