工作需要搭建ios自动化框架,使用Appuim框架,搭建过程也是个学习的过程,仅此记录一下,方便日后查看
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
检查是否安装成功,查看homebrew版本:brew -v
官方源码地址:https://github.com/libimobiledevice/libimobiledevice
将下面的命令粘贴至终端:brew install libimobiledevice --HEAD
查看系统日志:idevicesys log
查看当前已连接的设备的UUID:idevice_id --list
截图:idevicescreenshot
查看设备信息:ideviceinfo
获取设备名称:idevicename
carthage 使用于 Swift 语言编写,只支持动态框架,只支持 iOS8+的Cocoa依赖管理工具。
将下面的命令粘贴至终端:brew install carthage
判断是否安装成功,查看carthage版本:carthage version
新版的node都已经集成了npm,所以安装node即可
将下面的命令粘贴至终端:brew install node
判断是否安装成功,查看node版本:node -v
判断是否安装成功,查看npm版本:npm -v
将下面的命令粘贴至终端:npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install -g appium
cnpm install -g appium-doctor
然后用appium-doctor检查环境,需要安装Android sdk,以及配置环境
git clone https://github.com/facebook/WebDriverAgent
运行初始化脚本:
cd /usr/local/lib/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent (如果WebDriverAgent 所在路径和此不同,请自行查找)
mkdir -p Resources/WebDriverAgent.bundle
sh ./Scripts/bootstrap.sh
cd /usr/local/lib/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent
xcodebuild -project WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination 'id=真机的udid' test
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Deve
原因:xcode的路径被修改
修复:在终端输入:sudo xcode-select -switch /Applications/Xcode.app 重置xcode路径,再重新执行,成功
git clone https://github.com/appium/python-client.git
cd python-client
python setup.py install