I'm building out a number of XCUITests.
At one stage in my app, we present an SKStoreReviewController
to ask the user if they'd like to review the app now.
All I'd like to do is dismiss the view, by hitting the "Not Now" button.
Normally, for other "system" views, I'd something like this:
let springboard = XCUIApplication(bundleIdentifier: "com.apple.springboard")
let notNowButton = springboard.buttons["Not Now"]
And then I'd do an appropriate 'wait' and tap action. But for some reason, this isn't working. Looking for advice on how to properly handle this screen.