Appium环境搭建(MAC版)

吾生也有涯,而知也无涯。这篇文章主要讲述Appium环境搭建(MAC版)相关的知识,希望能为你提供帮助。
一、环境搭建
(1)安装node.js
brew install node
(2)安装Xcode
测试ios App需要。
打开Finder,在Applications文件夹下,看是否有Xcode.app程序。如果没有,则需要安装。
下载地址:https://developer.apple.com/downloads/
安装方法同所有的dmg包的安装方法一样。
(3)安装Appium Server
npm install -g appium
(4)安装Appium Client
npm install wd
(5)android SDK、JDK环境配置
~下载ANDROID SDK
~下载JDK,安装后,查看JDK的安装路径:在终端输入/usr/libexec/java_home -V

Appium环境搭建(MAC版)

文章图片

~接下来就要配置JDK和SDK的环境了,中端输入open .bash_profile,打开文件,配置如下环境变量了(第一行:JDK路径,第三行:SDK路径,第四行:SDK中platform-tools路径,第五行:SDK中tools路径)
Appium环境搭建(MAC版)

文章图片

(6)安装appium-doctor
npm install appium-doctor -g
 
p.p1 { margin: 0; font: 14px Menlo; color: rgba(255, 255, 255, 1); background-color: rgba(0, 0, 0, 1) } span.s1 { font-variant-ligatures: no-common-ligatures } 
二、问题整理:
1. 执行appium-doctor,查看appium环境是否搭建完成
Appium环境搭建(MAC版)

文章图片

 
2. 安装Carthage
https://github.com/Carthage/Carthage/releases/download/0.24.0/Carthage.pkg
(https://github.com/Carthage/Carthage/releases)
【Appium环境搭建(MAC版)】3. 配置.bash_profile文件
在命令行中端输入:open .bash_profile
绿色:JAVA_HOME、JAVA_HOME/bin环境配置
中间:ANDROID_HOME环境配置
红色:ANDROID_SDK环境配置
Appium环境搭建(MAC版)

文章图片

保存,在命令行执行source .bash_profile,再次执行appium-doctor
Appium环境搭建(MAC版)

文章图片

 
  完美!!!!
p.p1 { margin: 0; font: 14px Menlo; color: rgba(255, 255, 255, 1); background-color: rgba(0, 0, 0, 1) } span.s1 { font-variant-ligatures: no-common-ligatures }

    推荐阅读