Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用默认功能向下滚动,但这只是滚动标题而不是整个屏幕。我想筛选剩余的屏幕。
一)你可以使用swipe()
swipe()
until element_exists("* marked:'selector'") do scroll("ScrollView", :down) end
II)你必须使用evaluate_javascripthtml 组件,
evaluate_javascript
wait_poll(:until_exists => c) do evaluate_javascript('webview',"$('selector').scroll();") end