Is it now possible to Automate an App Store App using Appium

别等时光非礼了梦想. 提交于 2019-12-05 22:08:39

You can not Automate an Appstore app using Appium.

To do automation testing on a ios app it should be signed with development certificate.

You can launch almost any iOS system app if you know it's bundle identifier.

I use ruby:

def launch_app(bundle_id)
  @driver.execute_script('mobile: launchApp',{'bundleId': "#{bundle_id}"});
end

def terminate_app(app_path)
  @driver.execute_script('mobile: terminateApp',{'app': "#{app_path}"});
end

To launch App Store:

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