Appium 1.6.4 正式版已经发布,详细日志请参考Change Log.
其中影响最大的有三点:
iOS - XCUITest
- Changes the way the Appium checks that WebDriverAgent is running on the device, so that rather than searching the logs, the device is pinged until it is ready.
- Remove realDeviceLogger capability, since we no longer check the logs
- Speed up setting the value of text fields
- Add mobile: swipe execute method
第一点影响最显著,避免了每次 $driver.restart 都导致需要重复启动两次模拟器,解决了我们最为头痛的执行时间问题。APP全回归测试用例的执行时间由原来的两个多小时,缩短为现在的四十多分钟。
第二点也是提升了文本输入的速度。
第三点导致我们需要修改五十多个测试用例来适应新的 swipe 调用参数。
因此强烈建议升级到 1.6.4.
与此同时需要升级的是 Appium Ruby Lib,必须更新为 9.4.0
否则,有一定几率appium与模拟器的会话挂起,导致测试用例超时失败。