最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

ios - How to tap on a markdown link within a SwiftUI Text view in a UITest - Stack Overflow

programmeradmin2浏览0评论

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:

  1. 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.

  2. 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 ?

发布评论

评论列表(0)

  1. 暂无评论