I have added accessibilityIdentifier to the source code. And did:
let privacypolicyurl = app.tables.textViews["privacyPolicy"]
privacypolicyurl.tap()
And another way:
let privacypolicyurl =
app.tables.textViews.containing(.link,identifier:"privacy Policy").element
privacypolicyurl.tap()
Then tried to debug with po app.links and see this:
Link 0x618000173140: traits: 8589934594, {{261.7, 592.3}, {74.7, 17.5}}, label: 'Privacy Policy' }
So, I came up with
let cooridnate =
app.tables.textViews["privacyPolicy"].coordinate(withNormalizedOffset: CGVector(dx: 261.7, dy: 592.3))
cooridnate.tap()
Unfortunately none of these worked out for me. Please help to figure out.
From the looks of your debug output, you'll be fine without specifying which views the link is contained within - it's possible that the link isn't inside the views that you think it is inside. It should be fine to just do:
I see your thinking with the coordinate, but you would want to get a coordinate object for the element first and then use the
withOffset
method onXCUICoordinate
, since that takes a vector with absolute values.coordinateWithNormalizedOffset
takes a vector with relative values, so in your example, you would be trying to tap the point that is 261 times the width of the element, to the right of the element's origin.