I am trying to write a UITest for SwiftUI link that I have set up in the following way:
var body: some View {
privacyPolicyLink
}
private func privacyPolicyLink(with url: URL) -> Text {
Text(.init("[privacy policy](\(url))"))
.underline()
.applyStyling() // applies fonts and foreground color
}
private var privacyPolicyURLView: Text {
textView(withDisplayText: "For more information, please see our")
+ privacyPolicyLink(with: url)
+ textView(withDisplayText: ".")
}
private func textView(withDisplayText text: String) -> Text {
Text(text)
.applyStyling() // applies fonts and foreground color
}
This renders fine and works as expected:
However, I am struggling to find a way to tap on the link in a UITest.
What I tried:
Putting the 3 views in an HStack instead of concatenating the text view. This does work, however, I can't go with this approach as the spacing becomes weird when the device font increases and I need to treat it as a sentence rather than 3 different elements.
I tried adding an accessibilityIdentifier to the complete
Text
view and then tried finding a link within it
// In the view
privacyPolicyURLView
.accessibilityIdentifier("privacyPolicyLabel")
// In the test
let privacyPolicyLabel: XCUIElementQuery = elementQuery(type: .staticText, byIdentifier: "privacyPolicyLabel")
let privacyPolicyLink = privacyPolicyLabel.element.links["privacy policy"].firstMatch
privacyPolicyLink.tap()
I get an error that No matches found.
I do something similar to get links via the app
let privacyPolicyLink = app.links["privacy policy"].firstMatch
privacyPolicyLink.tap()
I get a similar error Failed to tap "privacy policy" Link: No matches found for first query match sequence: Descendants matching type Link -> Elements matching predicate '"privacy policy" IN identifiers', given input App element pid: 19868
Do you know any way to tap the specific link within a SwiftUI text view in a UITest ?