ios auto test

/ 测试开发 / 0 条评论 / 541浏览
i5以上处理器的设备 有SHSH 备份也无法降级,只有i4处理器以下的设备才能在有SHSH备份的情况下降级
=====
 https://ipsw.me 查看
 http://www.zhihu.com/question/37297197
关闭更新
1.  ios app frank
http://blog.thepete.net/blog/2012/06/24/writing-your-first-frank-test/
2. athrun
3. appium
https://github.com/appium/appium/issues/521 actionsheet
iphone: target.frontMostApp().actionSheet().collectionViews()[0].visibleCells()[0].tap()
ipad: window.popover().elements()[0].collectionViews()[0].visibleCells()["Enroll new appliance"].tap();
android xpath定位:
WebElement txtEle = driver.findElement(By.xpath("//android.widget.TextView[@text='"+policyNames[i]+"']/following-sibling::android.widget.TextView[1]"));
String[] texts = txtEle.getText().split(" ");
5. EarlGrey  (https://github.com/google/EarlGrey ios原生自动化测试框架+xctest)
http://www.jianshu.com/p/ef0568ddcf27
http://blog.csdn.net/hillchan31/article/details/50724839 first