美文网首页我爱编程
appium环境搭建--mac os

appium环境搭建--mac os

作者: 天下不喵 | 来源:发表于2018-05-20 23:15 被阅读290次

    一、  通过命令行安装

    1、安装jdk

    Mac系统自带java,可通过java -version确认

    $ java -version

    java version "1.8.0_71"

    Java(TM) SE Runtime Environment (build 1.8.0_71-b15)

    Java HotSpot(TM) 64-Bit Server VM (build 25.71-b15, mixed mode)

    2、安装git

    Mac系统自带git,可通过git --version确认(注意version前为两个‘-’)

    $ git --version

    git version 2.8.1

    3、安装ruby

    $ ruby -v

    ruby 2.3.3p222 (2016-11-21 revision 56859) [universal.x86_64-darwin17]

    4、安装brew

    确认是否已安装 $ brew -v

    若未安装,报错-bash: brew: command not found

    安装brew    $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    安装成功后

    $ brew -v

    Homebrew 1.6.3

    Homebrew/homebrew-core (git revision 070e; last commit 2018-05-09)

    5、安装node

    未安装

    $ node -v       -bash: node: command not found

    安装node

    brew install node

    安装成功后

    $ node -v       v10.1.0

    6、npm

    $ npm install -g appium   

    npm在国内使用还是比较麻烦的

    推荐淘宝镜像

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

    安装完成后 所有npm命令都可以用cnpm代替

    7、安装appium

    $ npm install -g appium

    + wd@1.6.2

    added 98 packages in 15.823s

    8、安装wd

    $ npm install wd

    + wd@1.6.2

    updated 1 package in 3.208s

    9、安装appium-doctor

    $ npm install appium-doctor

    + appium-doctor@1.4.3

    added 118 packages in 14.51s

    安装完毕后

    $ appium-doctor   报错-bash: appium-doctor: command not found

    解决办法

    $ npm install -g appium-doctor   -g意味全局安装

    /usr/local/bin/appium-doctor -> /usr/local/lib/node_modules/appium-doctor/appium-doctor.js

    + appium-doctor@1.4.3

    added 214 packages in 16.953s

    10、Xcode与ANDROID SDK

    若未安装则安装下载Xcode;

    下载android sdk

    11、appium-doctor检查各配置安装情况

    $ appium-doctor

    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 10.1.0

    info AppiumDoctor  ✔ Xcode is installed at: /Library/Developer/CommandLineTools

    info AppiumDoctor  ✔ Xcode Command Line Tools are installed.

    info AppiumDoctor  ✔ DevToolsSecurity is enabled.

    info AppiumDoctor  ✔ The Authorization DB is set up properly.

    WARN AppiumDoctor  ✖ Carthage was NOT found!

    info AppiumDoctor  ✔ HOME is set to: /Users/panzhongjie

    WARN AppiumDoctor  ✖ ANDROID_HOME is NOT set!

    WARN AppiumDoctor  ✖ JAVA_HOME is NOT set!

    WARN AppiumDoctor  ✖ adb could not be found because ANDROID_HOME is NOT set!

    WARN AppiumDoctor  ✖ android could not be found because ANDROID_HOME is NOT set!

    WARN AppiumDoctor  ✖ emulator could not be found because ANDROID_HOME is NOT set!

    WARN AppiumDoctor  ✖ Bin directory for $JAVA_HOME is not set

    info AppiumDoctor ### Diagnostic completed, 7 fixes needed. ###

    info AppiumDoctor

    info AppiumDoctor ### Manual Fixes Needed ###

    info AppiumDoctor The configuration cannot be automatically fixed, please do the following first:

    WARN AppiumDoctor - Please install Carthage. Visit https://github.com/Carthage/Carthage#installing-carthage for more information.

    WARN AppiumDoctor - Manually configure ANDROID_HOME.

    WARN AppiumDoctor - Manually configure JAVA_HOME.

    WARN AppiumDoctor - Manually configure ANDROID_HOME and run appium-doctor again.

    WARN AppiumDoctor - Add '$JAVA_HOME/bin' to your PATH environment

    info AppiumDoctor ###

    info AppiumDoctor

    info AppiumDoctor Bye! Run appium-doctor again when all manual fixes have been applied!

    info AppiumDoctor

    上面检查结果是

    *  JAVA_HOME与ANDROID_HOME未配置

    *  Carthage没有找到

    若检查结果Xcode Command Line Tools没有安装,Fix it?的时候输入Y,就能自动导向安装

    12、安装Carthage

    指令   brew install Carthage

    安装完成

    Bash completion has been installed to:

      /usr/local/etc/bash_completion.d

    zsh completions have been installed to:

      /usr/local/share/zsh/site-functions

    ==> Summary

    🍺  /usr/local/Cellar/carthage/0.29.0: 69 files, 26.7MB

    12、bash_profile文件

    $ /usr/libexec/java_home -V    可用于查看mac jdk默认安装路径

    $ /usr/libexec/java_home -V

    Matching Java Virtual Machines (1):

        1.8.0_71, x86_64: "Java SE 8" /Library/Java/JavaVirtualMachines/jdk1.8.0_71.jdk/Contents/Home

    Mac 默认是没有这个文件的,我们自己建一个

    <1>touch   .bash_profile  创建

    <2>vi  .bash.profile   打开

    <3>设置JAVA_HOME与ANDROID_HOME

    export JAVA_HOME=$(/usr/libexec/java_home)

    export ANDROID_HOME="/Users/panzhongjie/Desktop/sdk/android_sdk" 

    <4>退出编辑并保存

    按ESC,输入:wq 保存退出

    <5>加载.bash_profile文件设置

    source  .bash.profile

    13.如果appium-doctor中还报错✖ Bin directory for $JAVA_HOME is not set

    <1>在.bash.profile中添加JAVA_HOME/bin的环境变量

    open .bash_profile  打开

    export  PATH=${JAVA_HOME}/bin:$PATH  添加

    command+s 保存

    source .bash_profile 加载

    <2>校验环境变量添加结果

    $appium-doctor

    扫描结果

    info AppiumDoctor ✔ Bin directory of $JAVA_HOME is set

    info AppiumDoctor ### Diagnostic completed, no fix needed. ###

    info AppiumDoctor

    info AppiumDoctor Everything looks good, bye!

    info AppiumDoctor

    14.运行appium service

    $ appium &

    [1] 12839

    panzhongjiedeMacBook-Air:~ panzhongjie$ (node:12839) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.

    [Appium] Welcome to Appium v1.8.0

    [Appium] Appium REST http interface listener started on 0.0.0.0:4723

    二、通过下载Appium-Desktop安装

    如果不习惯通过命令行安装,可以直接下载dmg安装包

    搬运自  https://blog.csdn.net/daihuimaozideren/article/details/79495753

    方案二,还是比较简单的,Appium官方网站提供了下载地址。

    https://github.com/appium/appium-desktop/releases

    启动界面如下

    需要注意的是,采用方案二安装,仍需要注意环境变量的问题。

    tips:

    很多人在用 npm install 的时候会遇到坑。

    比如 https 连不上。 这个就需要配置下 (Registry)[https://npmjs.org/doc/registry.html]

    使用 sudo 安装,在某个版本的 appium 里面,如果你使用 sudo npm install -g appium 安装的话,那么你必须找到这个安装的目录,并赋予其他用户读写权限,否则会出错。

    -g 很多人问 -g 这个选项, -g 的意思是全局安装,装好之后,你可以直接在命令行调用。

    更新升级 appium —— sudo npm update -g appium

    安装某个版本的 appium —— sudo npm install -g appium@0.12

    附录

    搬运自  

    Appium 在 Mac 上配置 Appium 问题收集  Lihuazhang 

    https://testerhome.com/topics/315

    关于IOS app与web环境配置

    iOS

    必备:

    iOS 开发证书

    一年 99 美元免不了。xCode 5 之后,苹果把开发证书,发布证书,真机调试这一套东西都自动化了。只需要在 Preferences => Accounts 里面输入你注册的开发者账号。

    真机

    iPhone, iPad, iTouch 随便搞一台。

    模拟器

    iOS 应用测试

    Appium 在 iOS 上的实现底层调用的 instruments 的 UIAutomation。有兴趣的同学可以研究下,推荐书籍 Test iOS Apps with UI Automation。

    对于一个应用,我们首先要把它 build 成一个 app。 xcode 提供了 xcodebuild 命令。详见 xcodebuild 文档

    然后对于模拟器来说,只需在 cap 里指定 app 地址就可以了。比如:

    FileappDir=newFile(System.getProperty("user.dir"),"../../../apps/TestApp/build/Release-iphonesimulator");Fileapp=newFile(appDir,"TestApp.app");DesiredCapabilitiescapabilities=newDesiredCapabilities();capabilities.setCapability(CapabilityType.BROWSER_NAME,"");capabilities.setCapability(CapabilityType.VERSION,"6.0");capabilities.setCapability(CapabilityType.PLATFORM,"Mac");capabilities.setCapability("device","iPhone Simulator");capabilities.setCapability("app",app.getAbsolutePath());driver=newSwipeableWebDriver(newURL("http://127.0.0.1:4723/wd/hub"),capabilities);

    对于真机,那你需要build能在你设备上运行的 app 并把它烧到真机上去。你可以直接在 xcode 里选择真机运行或者使用 fruitstrap (未试用过) 推送到真机上。

    之后,启动 Appium 时候,需要指定真机 UDID 和 app 的 bundle id。例如:appium -U 45f082689dbaebb0ffa3620b3ae22ad9faff9a30 --app io.appium

    iOS web 测试

    对于普通的 Webdriver 代码,Appium 也可以充当一个 Selenium Server。

    在模拟器上,只要配置下 cap 的 app 参数就可以了。

    {app:'safari',device:'iPhoneSimulator',version:'7.0'}

    p.s 注意自己的版本号。

    在真机上,Appium 还不能直接调用启动 Safari。我想其根本原因应该是和苹果的封闭性有关,之前 Webdriver 上的 SafariDriver 也是破费周折。苹果不允许你对他的产品有任何倾入行为。

    不过英雄们还是有很多解决方法,坊间流传两个曲线救国的方法,可以参见 http://testerhome.com/topics/313

    相关文章

      网友评论

        本文标题:appium环境搭建--mac os

        本文链接:https://www.haomeiwen.com/subject/sbhvdftx.html