码迷,mamicode.com
首页 > 移动开发 > 详细

Calabash-android 预定义steps

时间:2014-09-08 10:53:06      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:calabash   android   

Calabash-android目录下的canned_steps.md中列出了一系列预定义的steps,这些steps的定义位于calabash-android\steps\目录下。本文将介绍这些steps和用法。

1.断言steps:定义在assert_steps.rb中

断言看到了文本:

Then /^I see the text "([^\"]*)"$/
Then /^I see "([^\"]*)"$/
Then /^I should see "([^\"]*)"$/
Then /^I should see text containing "([^\"]*)"$/

例:

 Feature: Hello word

  Scenario: See hello word

   The I see the text "Hello world"
断言没看到文本:

Then /^I should not see "([^\"]*)"$/
Then /^I don‘t see the text "([^\"]*)"$/
Then /^I don‘t see "([^\"]*)"$/  

2.输入steps:定义在

点击复选框

Then /^I toggle checkbox number (\d+)$/ do |index|
例:
#点击第一个checkbox
Then I togle checkbox number 1

context_menu_steps:

Then /^I long press "([^\"]*)"$/ do |text|
例:Then I long press "Stop"
长按其属性text="Stop"的View

3.按钮

点击返回按钮:

Then I go back
点击Menu

Then I press the menu key
模拟用户在键盘上输入entey

Then I press the enter button

4.手势

往左滑动

Then I swipe left
往右侧滑动

Then I swipe right

上下滑动,用于list控件

Then I scroll down
Then I scroll up

从menu中选择menu_item

#从menu中选择quit
Then I select "quit" from menu

从一点拖动到另一点

Then /^I drag from (\d+):(\d+) to (\d+):(\d+) moving with (\d+) steps$/ do |from_x, from_y, to_x, to_y, steps|


Calabash-android 预定义steps

标签:calabash   android   

原文地址:http://blog.csdn.net/bigconvience/article/details/39134535

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!