Check Email during Xcode UI Testing?

天涯浪子 提交于 2019-11-28 13:47:20

问题


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.


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/23613698/check-email-during-xcode-ui-testing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!