Question

UPDATE: Is this still possible with the new way of UI testing with Xcode?

Can I programmatically access my email from an iOS UI Automation script?

I want to access the signup code that my iPhone app emails to my email account.

Was it helpful?

Solution 2

Use NSURLSession to make HTTP requests from within test methods. See: https://stackoverflow.com/a/35708282/242933

OTHER TIPS

If you have a way for your device/simulator to receive the code while still in the app then you can write a script an iOS UIA script to do this.

However with the current state of the built in iOS UIA tool, you cannot access anything that is outside of your app. So basically you cannot launch your app, then launch another app (like safari) go to mail.google.com blah blah.

The closest thing to leaving your app in iOS UIA is using a function call to send your app to background for X amount of seconds.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top