我如何滚动屏幕在webview页面与安卓葫芦



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

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

相关内容

  • 没有找到相关文章

最新更新