Skip to content

Instantly share code, notes, and snippets.

@jmoody
jmoody / navbar_steps.rb
Created July 27, 2012 19:49
calabash-cucumber steps for dealing with the navigation bar
def navbar_visible?
!query('navigationBar').empty?
end
def navbar_has_back_button?
!query("navigationItemButtonView").empty?
end
def navbar_should_have_back_button
unless navbar_has_back_button?