We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 174c9af commit 53fe558Copy full SHA for 53fe558
1 file changed
Tests/IntegrationTests/Components Tests/PayTo/PayToComponentTests.swift
@@ -85,6 +85,17 @@ class PayToComponentTests: XCTestCase {
85
XCTAssertNotNil(phoneNumberItem, "Phone number item should exist")
86
}
87
88
+ func test_payid_titleLabel_exists() throws {
89
+ // Given
90
+ sut.viewController.loadViewIfNeeded()
91
+
92
+ // Check by accessibility identifier
93
+ let payIdTitleLabelItem = sut.viewController.view.findView(with: "AdyenComponents.PayToComponent.payIdFlowTitleTitleLabel") as? UILabel
94
95
+ // Then
96
+ XCTAssertNotNil(payIdTitleLabelItem, "PayId flow title label should exist")
97
+ }
98
99
func test_identifierPicker_exists() throws {
100
// Given
101
sut.viewController.loadViewIfNeeded()
0 commit comments