我正在使用calabash-android为Android应用编写一些测试用例。
我找到元素的第一个想法就是向下滚动,直到元素被发现为:
Then /^I enter "([^\"]*)" into the input field with id "([^\"]*)"$/ do |text, id|
q = query("EditText id:'#{id}'")
while q.empty?
scroll_down
q = query("EditText id:'#{id}'")
end
enter_text("android.widget.EditText id:'#{id}'", text)
end
然而,如果页面发生变化并且我已经以这种方式滚过元素,我找不到我正在搜索的元素。所以第二个想法是以这种方式进行搜索:
Then /^I enter "([^\"]*)" into the input field with id "([^\"]*)"$/ do |text, id|
q = query("EditText id:'#{id}'")
while q.empty?
scroll_down
q = query("EditText id:'#{id}'")
end
while q.empty?
scroll_up
q = query("EditText id:'#{id}'")
end
enter_text("android.widget.EditText id:'#{id}'", text)
end
但是,我不知道如何检查页面的末尾,我希望有更好的方法来搜索元素,然后向下滚动到页面底部,然后再向上滚动。< / p>
所以我的两个问题是:是否有更好的选择,如果没有,我是否会发现我位于页面底部/顶部?
修改 感谢提醒,我非常喜欢你的想法jmoody。
我会这样做:
Then /^I enter "([^\"]*)" into the input field with id "([^\"]*)"$/ do |text, id|
q = query("EditText id:'#{id}'")
counter = 0
while q.empty?
break if counter == 5
scroll_down
q = query("EditText id:'#{id}'")
counter = counter + 1
end
if counter == 5
fail("The button with the id:'#{id}' could not be found")
else
enter_text("EditText id:'#{id}'", text)
end
end
答案 0 :(得分:1)
我没有Calabash Android的例子,但这里有一个来自Calabash iOS的例子 - 概念是一样的。这不是一个理想的解决方案。
https://github.com/calabash/ios-webview-test-app/tree/master/CalWebViewApp/features
Scenario: Query UIWebView with css
Given I am looking at the UIWebView tab
And I can query for the body with css
Then(/^I can query for the body with css$/) do
page(WebViewApp::TabBar).with_active_page do |page|
qstr = page.query_str("css:'body'")
visible = lambda {
query(qstr).count == 1
}
counter = 0
loop do
break if visible.call || counter == 6
scroll(page.query_str, :down)
step_pause
counter = counter + 1
end
res = query(qstr)
expect(res.count).to be == 1
end
end
如果你控制页面上的html,你可以添加隐藏的元素来标记页面的顶部和底部。
<强>更新强>
我喜欢Aravin的回答并在CalWebApp中尝试了。
js = "window.scrollTo(0,0)"
query(tab_name, {calabashStringByEvaluatingJavaScript:js})
wait_for_none_animating
答案 1 :(得分:1)
您必须使用javascript
或jquery
方法执行此操作。
evaluate_javascript(query_string, javascript)
示例:强>
evaluate_javascript('EditText', '#{id}.ScrollTO()')
evaluate_javascript('EditText', 'scrollTop()')
您可以在此处找到更多详细信息:http://www.rubydoc.info/gems/calabash-android/0.5.8/Calabash/Android/Operations:evaluate_javascript