├── .github └── FUNDING.yml ├── .gitignore ├── .spi.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── UITestingPlus │ ├── Documentation.docc │ ├── TextFieldHelpers.md │ └── UITestingPlus.md │ ├── HittableElementExpectation.swift │ ├── XCTest+Soon.swift │ ├── XCUIApplication+Apps.swift │ ├── XCUIApplication+Documents.swift │ ├── XCUIApplication+Menus.swift │ ├── XCUIApplication+Windows.swift │ ├── XCUIElement+Accessors.swift │ ├── XCUIElement+Existence.swift │ ├── XCUIElement+Hittable.swift │ ├── XCUIElement+Soon.swift │ └── XCUIElement+TextEditing.swift ├── Tests └── UITestingPlusTests │ └── UITestingPlusTests.swift └── UITestingPlus.podspec /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mattmassicotte] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/.spi.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/README.md -------------------------------------------------------------------------------- /Sources/UITestingPlus/Documentation.docc/TextFieldHelpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/Documentation.docc/TextFieldHelpers.md -------------------------------------------------------------------------------- /Sources/UITestingPlus/Documentation.docc/UITestingPlus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/Documentation.docc/UITestingPlus.md -------------------------------------------------------------------------------- /Sources/UITestingPlus/HittableElementExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/HittableElementExpectation.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCTest+Soon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCTest+Soon.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIApplication+Apps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIApplication+Apps.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIApplication+Documents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIApplication+Documents.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIApplication+Menus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIApplication+Menus.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIApplication+Windows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIApplication+Windows.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIElement+Accessors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIElement+Accessors.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIElement+Existence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIElement+Existence.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIElement+Hittable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIElement+Hittable.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIElement+Soon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIElement+Soon.swift -------------------------------------------------------------------------------- /Sources/UITestingPlus/XCUIElement+TextEditing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Sources/UITestingPlus/XCUIElement+TextEditing.swift -------------------------------------------------------------------------------- /Tests/UITestingPlusTests/UITestingPlusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/Tests/UITestingPlusTests/UITestingPlusTests.swift -------------------------------------------------------------------------------- /UITestingPlus.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChimeHQ/UITestingPlus/HEAD/UITestingPlus.podspec --------------------------------------------------------------------------------