Skip to content

Instantly share code, notes, and snippets.

View boztalay's full-sized avatar

Ben Oztalay boztalay

  • San Francisco, CA
View GitHub Profile
@boztalay
boztalay / navbar_steps.rb
Last active December 18, 2015 01:58 — forked from jmoody/navbar_steps.rb
Cleaning up jmoody's original, removing dependencies and duplicates. I haven't gotten around to testing all of these yet.
#Helper functions
def is_there_a_navbar
return (query("navigationBar").length > 0)
end
def is_there_a_back_button
return (query("navigationItemButtonView").length > 0)
end