Can we automate audio/video calls in native iOS devices?

时光毁灭记忆、已成空白 提交于 2020-07-20 06:26:29

问题


  1. how to automate audio/video calls in iOS devices?
  2. How do caller get to know if callee has picked up the call or rejected?
  3. How to automate two devices at a time?
  4. Is it feasible to automate video/audio call in iOS devices? if yes can you please share the references?

回答1:


  1. Automating end-to-end scenarios is a challenging task. I would start with automating calls on one device and assert the network response with your server's APIs.
  2. Not really a StackOverflow question. Read these companies blogs or watch their keynote on conferences.
  3. Once again, you should test a call from a device to an echo server. Your app UI should display if callee accepted the call.
  4. XCTest can only target one device at a time. But, if you use a client-server architecture solution (you can implement it by yourself or use Appium) you can automate two devices at a time.
  5. For fully automated end-to-end scenarios you will need a setup including two iOS devices that can record a TV that displays the Linux time with a QR-code to verify video and probably an Arduino to playback and listen to sounds. From a software point of view you'll need Appium (or similar) and your servers API.


来源:https://stackoverflow.com/questions/62770405/can-we-automate-audio-video-calls-in-native-ios-devices

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