We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bce9fe2 commit f732e80Copy full SHA for f732e80
sample-apps/swift-sample-app/swift-sample-app-ui-test/SwiftSampleAppUITest.swift
@@ -0,0 +1,17 @@
1
+//
2
+// SwiftSampleAppUITest.swift
3
+// SwiftSampleAppUITest
4
5
+// Created by Justin Yu on 12/4/23.
6
+// Copyright © 2023 Iterable. All rights reserved.
7
8
+
9
+import XCTest
10
11
+final class SwiftSampleAppUITest: XCUITestBase {
12
+ func testElementsVisible() {
13
+ let app = XCUIApplication()
14
15
+ XCTAssertTrue(app.staticTexts["Coffees"].exists)
16
+ }
17
+}
0 commit comments