Android_自动化测试工具_Calabash(2)

1.简单介绍 
calabash-android是BDD测试框架,底层实现是cucumber,我之前写过cucumber类似的文章,所以上手还算快,极力推荐,个人觉得比robotium,uiautomation不知道好了多少倍,越用越纯熟。 

2.安装与应用 
安装ruby环境,我安装的是1.8.7 
安装gem,此包用于安装ruby的lib  安装 rubygems: http://rubygems.org/pages/download
安装gem install calabash-android 
git clone calabash-android源码 

3.如何运行 
1.设置ANDROID_HOME环境变量 
2.运行calabash-android help 按照help顺序运行 
3.过程中遇到找不到lib相关包时,在你的脚本上添加require 'rubygems' 
4.关注一下https://github.com/calabash/calabash-android的wiki,尤其在build阶段要不然你走弯路吧 

Java代码   收藏代码
  1. git clone https://github.com/calabash/calabash-android.git  
  2. git submodule init  
  3. git submodule update  
  4. cd ruby-gem  
  5. rake build  

你可能感兴趣的:(Android_自动化测试工具_Calabash(2))