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.

有帮助吗?

解决方案 2

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

其他提示

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top