How can I have access to notification view, when I want to test push notification on iOS simulator with new Xcode.
On Xcode 11 I created springBoard by calling
let springBoard = XCUIApplication(bundleIdentifier: "com.apple.springboard")
and next I had access to notification view with:
springBoard.otherElements["NotificationShortLookView"]
with new Xcode it's not working. How can I still test push notification on simulator with Xcode 12?
On Xcode 11 I created springBoard by calling
let springBoard = XCUIApplication(bundleIdentifier: "com.apple.springboard")
and next I had access to notification view with:
springBoard.otherElements["NotificationShortLookView"]
with new Xcode it's not working. How can I still test push notification on simulator with Xcode 12?