0

我正在尝试使其与下一个代码一起使用:

enter_text("android.widget.EditText id:'numberpicker_input'", value)

但有时它不起作用。问题是,如果数字选择器失去焦点,它正在移除EditText.

4

2 回答 2

0

其实这只是我缺少红宝石和葫芦。我克隆了calabash android并开始调查并找到了下一个解决方案:

  query("android.widget.NumberPicker id:'minutes_picker'", setValue:minutes)

minutes应该是整数值

于 2015-09-02T12:49:01.223 回答
0

在我在警报对话框中选择数字选择器的情况下,我在 ~/features/step_definitions/calabash_steps.rb 中定义了自定义步骤。

Given /^I set the NumberPicker value to (\d+)$/ do |value|
   query("android.widget.NumberPicker", setValue:Integer(value)-1)
end

(1 是第一个选择器值,而不是 0。)

然后在一个场景中,当显示带有数字选择器的警报对话框时,

Given I set the NumberPicker value to 2

希望这可以帮到你。

于 2017-04-11T03:34:25.100 回答