Skip to content

Instantly share code, notes, and snippets.

@cheezy
Created September 25, 2011 11:59
Show Gist options
  • Save cheezy/1240538 to your computer and use it in GitHub Desktop.
Save cheezy/1240538 to your computer and use it in GitHub Desktop.
module PageHeader
include PageObject
text_field(:header_search, :id => 'header_search')
h1(:page_title, :index => 0)
end
module ErrorMessages
include PageObject
unordered_list(:error_messages, :id => 'errors_list')
end
class MyPageObject
include PageObject
include PageHeader
include ErrorMessages
.. # my page stuff goes here
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment