如何滚动ListView,直到我看到一个特定的字符串葫芦安卓



我有和下面的帖子完全相同的问题,除了我需要它在Android上工作,下面的帖子是针对iOS的。我尝试了那篇文章中给出的两种解决方案,但它们似乎都不适用于Android。感谢所有的帮助!

我如何滚动一个UITable视图向下直到我看到一个单元格标签"Value"在葫芦

你可以添加这个新的步骤定义,它应该在Android上起作用:

Then /^I scroll until I see the "([^"]*)" text$/ do |text|
  q = query("TextView text:'#{text}'")
  while q.empty?
    scroll_down
    q = query("TextView text:'#{text}'")
  end 
end

它对我有用,我希望它对你也有用!

performAction('scroll_down')

在语句中,performAction()自葫芦0.5以来已弃用,因此在最新版本

中无效

我的解决方案是,

def scroll_until_I_see(id)
  until element_exists("* marked:'#{id}'") do
    scroll("ScrollView", :down)
  end
end
   #get total row count    
    count=query("ListView",:getCount).first.to_i
    var=0
    count.times {
        query("ListView",{:smoothScrollToPosition=>var})
        var+=1
        puts "#{count} #{var}"
        #break if id found  
        break if element_exists("* marked:'#{id}'")
        #fail if all rows are checked
        fail("#{id} is missing") if var==count
    }

这是一个方法,如果没有找到元素,它将滚动屏幕并返回元素或空数组。

def find_if_exist(text)
  query_result = query("* marked:'#{text}'")
  current_screen_state = query('*')
  prev_screen_state = []
  while (query_result.empty? and (current_screen_state != prev_screen_state))
     prev_screen_state = current_screen_state
     perform_action('drag', 50, 50, 60, 40, 20)
     current_screen_state = query('*')
     query_result = query("* marked:'#{text}'")
  end
  query_result
end

我有一个嵌套视图,所以向下滚动scroll_down函数将返回"无滚动视图"无论如何。所以根据你们所有人的讨论,我发现这个是有效的:

scroll("android.support.v4.widget.NestedScrollView",:down)

向下滚动,但只滚动一次

相关内容

  • 没有找到相关文章

最新更新