appium自动化测试
appium官网:http://appium.io/index.html?lang=zh
Requirements
Your environment needs to be setup for the particular mobile platforms that you want to run tests on. See below for particular platform requirements.
If you want to run Appium via an npm install
, hack with or contribute to Appium, you will need node.js and npm 0.12 or greater (use n or brew install node
to install Node.js. Make sure you have not installed Node or Appium with sudo
, otherwise you'll run into problems). We recommend the latest stable version.
To verify that all of Appium's dependencies are met you can use appium-doctor
. Install it with npm install -g appium-doctor
(or run it from source), then run appium-doctor
and supply the --ios
or --android
flags to verify that all of the dependencies are set up correctly.
You also need to download the Appium client for your language so you can write tests. The Appium clients are simple extensions to the WebDriver clients. You can see the list of clients and links to download instructions at the Appium clients list.
iOS Requirements
- Mac OS X 10.10 or higher, 10.11.1 recommended
- XCode >= 6.0, 7.1.1 recommended
- Apple Developer Tools (iPhone simulator SDK, command line tools)
- Ensure you read our documentation on setting yourself up for iOS testing!
Android Requirements
- Android SDK API >= 17 (Additional features require 18/19)
- Appium supports Android on OS X, Linux and Windows. Make sure you follow the directions for setting up your environment properly for testing on different OSes:
FirefoxOS Requirements
根据以上内容可知,安装appium相关Android测试环境需要:
1、使用npm安装,需要安装npm
2、node.js >0.12
3、安装appium-doctor检查安装appium前的相关依赖
由于国内网络环境的影响,使用国内镜像下载安装:
npm install -g appium-doctor --registry=https://registry.npm.taobao.org/
4、安装Appium client
作者:无言
如果您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】
如果您希望与我交流互动,欢迎微博互粉
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。