我如何使用android calabash在webview页面中滚动屏幕

时间:2015-07-30 05:46:12

标签: scroll webview calabash-android

我使用默认功能向下滚动,但这只是滚动标题而不是整个屏幕。我想屏幕剩余的屏幕。

1 个答案:

答案 0 :(得分:0)

I)您可以使用swipe()

until element_exists("* marked:'selector'") do
    scroll("ScrollView", :down)
 end

II)你必须使用evaluate_javascript作为html组件,

wait_poll(:until_exists => c) do
    evaluate_javascript('webview',"$('selector').scroll();")
end