How do i scroll a UITableView down until i see a cell with label \"Value\" in Calabash/Cucumber. I\'ve been trying to do it using:
Then
following should also work
Then(/^I scrolldown until "(.*?)" is visible$/) do |arg1| until query("lable text:'#{arg1}'").length > 0 scroll("tableView", :down) end end
Call this by following
Then I scrolldown until "XY" is visible