Skip to content

Instantly share code, notes, and snippets.

@amedrz
Last active October 9, 2015 16:42
Show Gist options
  • Save amedrz/ecafd9aefa96013d3955 to your computer and use it in GitHub Desktop.
Save amedrz/ecafd9aefa96013d3955 to your computer and use it in GitHub Desktop.
page-object-before
// Before page object
test('sign up', function() {
expect(1);
visit('/sign-up');
fillIn('#signup-form #name', 'John Doe');
fillIn('#signup-form #email', 'john@doe.com');
fillIn('#signup-form #password', '1234567890');
click('#signup-form #submit');
andThen(function() {
equal(currentPath(), 'success');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment