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
506
GitHub Stars
314
First Seen
Mar 22, 2026
xcuitest — prisma-labs-dev/apple-skills