Last active
August 29, 2015 14:13
-
-
Save Blackbaud-TitusFortner/c570fd3e5766e8ac4915 to your computer and use it in GitHub Desktop.
Views
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class RegisterView < CLOView | |
process_page "Create Registration" do | |
process_page_alias 'Edit Registration' | |
keyword(:username) {browser.text_field(id: 'username')} | |
keyword(:password) {browser.text_field(id: 'password')} | |
keyword(:email) {browser.text_field(id: 'email')} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class RegisterView < CLOView | |
process_page 'Create Registration' do | |
keyword(:username) {browser.text_field(id: 'username')} | |
keyword(:password) {browser.text_field(id: 'password')} | |
keyword(:email) {browser.text_field(id: 'email')} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment