我使用默认功能向下滚动,但这只是滚动头而不是整个屏幕。我想筛选剩余的屏幕。
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