Skip to content

Instantly share code, notes, and snippets.

@gamefreak
Last active August 29, 2015 14:07
Show Gist options
  • Save gamefreak/ae74f9bef9586a41c40e to your computer and use it in GitHub Desktop.
Save gamefreak/ae74f9bef9586a41c40e to your computer and use it in GitHub Desktop.
class Dialog
include PageObject
button(:close, class: 'close')
end
class AddPersonDialog < Dialog
text_field(:first_name, id: 'first_name')
text_field(:last_name, id: 'last_name')
end
PageObject.register_widget(:add_person_dialog, AddPersonDialog, :div)
class MainPage
include PageObject
button(:new_person, id: 'create_person')
add_person_dialog(:add_person_dialog, id: 'add_person')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment