MAC下搭建 appium+ios+python 自动化测试环境(一)

Mac 下 appium +python 自动化测试系列:
Mac 下搭建 appium+ios+python 自动化测试环境(一)
Mac 下 appium 自动化测试iOS 测试配置和脚本编写(二)
Mac 下 搭建appium +android+python 自动化测试环境(三)
Mac 下 appium 自动化测试 Android 测试配置和脚本编写(四)

环境搭建要求,MAC 机器一台,要求 Xcode 8.0以上,有 Apple ID 账号,懂一点点终端命令,最重要的是能够联网,如果都 OK 了,那就可以开搞了!

  • 1.安装 Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • 2.安装 libimobiledevice
brew install libimobiledevice
  • 3.安装 ideviceinstaller(真机安装相关)
brew install  ideviceinstaller
  • 4.安装 carthage
brew install carthage

安装 carthage容易出现以下错误

Error: An unexpected error occurred during the `brew link` step
The formula built, but is not symlinked into /usr/local
Permission denied @ dir_s_mkdir - /usr/local/Frameworks
Error: Permission denied @ dir_s_mkdir - /usr/local/Frameworks

原因是carthage已经安装,但是没有 link 到 brew,还有就是文件夹权限问题,在终端输入:

sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks
brew link carthage
This package has installed:
    •   Node.js v8.11.2 to /usr/local/bin/node
    •   npm v5.6.0 to /usr/local/bin/npm
Make sure that /usr/local/bin is in your $PATH.
  • 6.安装 cnpm(主要是因为墙和网络的问题,换成淘宝的 cnpm)
npm install -g cnpm --registry=https://registry.npm.taobao.org

安装这个坑比较多,一般会出现以下提示:

npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm ERR! path /usr/local/lib/node_modules
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!  { Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!   stack: 'Error: EACCES: permission denied, access \'/usr/local/lib/node_modules\'',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/local/lib/node_modules' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

这个时候你换成

sudo npm install -g cnpm --registry=https://registry.npm.taobao.org

如果脸不好,或者网络问题,又会出现以下问题:

npm WARN registry Unexpected warning for https://registry.npm.taobao.org/: Miscellaneous Warning ETIMEDOUT: request to https://registry.npm.taobao.org/cnpm failed, reason: connect ETIMEDOUT 114.55.80.225:443
npm WARN registry Using stale package data from https://registry.npm.taobao.org/ due to a request error during revalidation.

网上找一了一圈,还是没解决,最后还是根据权限提示,自己摸索出来的,先打开目录权限,然后再安装镜像

sudo chown $(whoami):admin /usr/local/lib/node_modules/

npm install -g cnpm --registry=https://registry.npm.taobao.org
  • 7.安装 iOS-deploy
cnpm install -g ios-deploy

这个会出现超时错误

Get /binary-mirror-config/latest from https://registry.npm.taobao.org error: ConnectionTimeoutError: Connect timeout for 5000ms, GET https://registry.npmjs.org/binary-mirror-config/latest -2 

感觉就是淘宝的镜像源的问题,没有同步或者什么原因,解决方法如下:

//设置镜像源
npm config set registry https://registry.npm.taobao.org --global
//配置镜像列表
npm config list
//执行安装指令
npm install -g ios-deploy
  • 8.安装 xcpretty
gem install xcpretty

如果没使用代理或者公司网有限制的话,一般没问题。

  • 9.安装 appium1.8 release版本可以终端安装也可以下载桌面端appium 桌面端下载链接 选择 dmg 或者 desktop 版本。因为我们前面配置过 npm 的镜像源了,所以直接:
npm install -g appium

安装完顺便安装 appium doctor

npm install -g appium-doctor

公司网络太坑,我用的手机热点下的,妈蛋啊,心疼我的流量!

接着安装 python 的环境

git clone git@github.com:appium/python-client.git
cd python-client
python setup.py install
  • 10.安装 wd
npm install -g wd
  • 11.安装 webpack
npm i -g webpack 
  • 12.安装 appium-xcuitest-driver依赖
#如果已经安装,请先卸载
#npm uninstall appium-xcuitest-driver
npm install appium-xcuitest-driver
  • 13.配置 WebDriverAgent

首先,我想说这个 appium 自带的项目,有毒啊!!这个真的有毒啊,绝对有毒啊!

cd  /usr/local/lib/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent

mkdir -p Resources/WebDriverAgent.bundle

sh ./Scripts/bootstrap.sh

运行完,就是报fatal: could not read Username for 'https://github.com': terminal prompts disabled这个错误啊,原因竟然是,依赖库里面的 Cartfile里面的依赖库不见了啊!我搞了一天多,搜索都搜索的要吐了!

正确姿势如下,请 get✔️
先进到用户目录下或者根目录下:

cd ~

git clone https://github.com/facebook/WebDriverAgent.git

cd WebDriverAgent

mkdir -p Resources/WebDriverAgent.bundle

sh ./Scripts/bootstrap.sh

一顿操作猛如虎之后, 进入到appium-xcuitest-driver路径下

cd  /usr/local/lib/node_modules/appium/node_modules/appium-xcuitest-driver/

rm –rf WebDriverAgent(移除自带的,当然如果没有安装自带的就不用执行这个指令)

ln -s ~/WebDriverAgent WebDriverAgent  (其中~/WebDriverAgent是源地址,后面的是目标地址,也就是把你 clone 的项目链接到 driver 里面)
  • 14.编译 WebDriverAgent

1.进入目标文件或者你刚链接的源文件也行(链接之后源文件改变,引用文件也会改变)


WebDriverAgent项目路径
  1. 双击WebDriverAgent.xcodeproj打开此项目,这个项目由facebook开源.在这里我们的目的就是更改一些配置,让他能够编译成功,首先编译之前你得有 ID账号,并且登录你的Xcode账户


    配置开发证书等

    接着编译WebDriverAgentRunner


    配置 runner 的证书信息

    配置 setting 信息
  • 15.建立服务WebDriverAgent (手机和MAC都在同一个网段下,且都能连接外网)关闭Xcode,进入WebDriverAgent 文件夹
cd  /usr/local/lib/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent

xcodebuild -project WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination 'id=真机的udid' test

如果终端出现以下信息,表示编译 OK

Testing failed:
    Early unexpected exit, operation never finished bootstrapping - no restart will be attempted
** TEST FAILED **

这个是时候iphone多了一个WebDriverAgentRunner的app


信任证书选项

我们在通用设置的描述文件里面信任我们的开发证书
之后再次运行上面的指令:

xcodebuild -project WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination 'id=真机的udid' test

如果出现以下信息,表示运行成功了:

2018-04-26 16:25:33.445429+0800 WebDriverAgentRunner-Runner[314:21633] Continuing to run tests in the background with task ID 1
Test Suite 'All tests' started at 2018-04-26 16:25:33.508
Test Suite 'WebDriverAgentRunner.xctest' started at 2018-04-26 16:25:33.509
Test Suite 'UITestingUITests' started at 2018-04-26 16:25:33.510
Test Case '-[UITestingUITests testRunner]' started.
    t =     0.01s Start Test at 2018-04-26 16:25:33.518
    t =     0.01s Set Up
2018-04-26 16:25:33.527655+0800 WebDriverAgentRunner-Runner[314:21633] Built at May 22 2018 07:53:09
2018-04-26 16:25:33.552834+0800 WebDriverAgentRunner-Runner[314:21633] ServerURLHere->http://172.20.10.7:8100<-ServerURLHere

这个时候我们来一遍验证吧。

appium-doctor --ios

出现如下信息:

info AppiumDoctor Appium Doctor v.1.4.3
info AppiumDoctor ### Diagnostic starting ###
info AppiumDoctor  ✔ The Node.js binary was found at: /usr/local/bin/node
info AppiumDoctor  ✔ Node version is 8.11.2
info AppiumDoctor  ✔ Xcode is installed at: /Applications/Xcode.app/Contents/Developer
info AppiumDoctor  ✔ Xcode Command Line Tools are installed.
info AppiumDoctor  ✔ DevToolsSecurity is enabled.
info AppiumDoctor  ✔ The Authorization DB is set up properly.
info AppiumDoctor  ✔ Carthage was found at: /usr/local/bin/carthage
info AppiumDoctor  ✔ HOME is set to: /Users/xxxxxx
info AppiumDoctor ### Diagnostic completed, no fix needed. ###
info AppiumDoctor 
info AppiumDoctor Everything looks good, bye!
info AppiumDoctor 

至此,说明我们环境配置成功了!

整个环境配置踩得的坑不要不要的,主要是公司是内网,上外网用的代理,也没法挂 VPN,希望以上的环境搭建真实有效的减少你们踩坑的几率,愉快的开始自动化测试路程!下一篇,我会写一下如何进行脚本测试和 appium desktop 的使用!

参考:

在 MAC 上搭建 appium1.6.3 过程

Xcode9.0+appium1.6.5真机环境运行app及遇坑知多少

appium mac 下 安装及踩坑

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容