1.6起放弃uiautomation;
改用xcuiteest机制;
环境基础:xcode8,ios9.3以上
1. 安装最新版1.6.3
安装cnpm: npm install -g cnpm –registry=https://registry.npm.taobao.org
安装appium1.6.3: cnpm install –g appium@1.6.3
2.安装appium-xcuitest-driver依赖
进入WebDriverAgent安装目录:cd /usr/local/lib/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent
运行bootstrap:
mkdir -p Resources/WebDriverAgent.bundle
sh ./Scripts/bootstrap.sh -d
3. 更改脚本配置:
增加这个apabilities
automationName, “XCUITest”
源文:https://testerhome.com/topics/6962
新定位工具:https://macacajs.github.io/app-inspector/cn/
App Inspector 是运行在浏览器端的移动设备 UI 查看器,使用树状态结构查看 UI 布局,并且能自动生成 XPath,方便脚本的编写和生成。
安装
$ npm install app-inspector -g (直接装会很慢,换这个命令: npm install app-inspector -g –registry=https://registry.npm.taobao.org)
使用
$ app-inspector -u YOUR-DEVICE-ID
附:用instruments -s 获取当前所有设备信息
操作后,如下图所示
(一)
(二)自动在浏览器中打开如上图二所示的界面,通过 选择左侧元素,查看它的各项属性,name,class,xpath等。
原appium 1.5定位主要基于xpath,用name,class_name等定位效果差。
appium 1.6中用name,class_name等定位成功率高,几乎不再用xpath。
http://www.cnblogs.com/hyddd/p/5571229.html Macaca是一个轻量级的Appium。 这个可以尝试使用一下
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/194708.html