Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created March 16, 2019 10:23
Show Gist options
  • Save brpaz/ea3dda6a18c471980551d160507e1cfa to your computer and use it in GitHub Desktop.
Save brpaz/ea3dda6a18c471980551d160507e1cfa to your computer and use it in GitHub Desktop.
describe('Post Resource', function() {
it('Creating a New Post', function() {
cy.visit('/posts/new') // 1.
cy.get('input.post-title') // 2.
.type('My First Post') // 3.
cy.get('input.post-body') // 4.
.type('Hello, world!') // 5.
cy.contains('Submit') // 6.
.click() // 7.
cy.url() // 8.
.should('include', '/posts/my-first-post')
cy.get('h1') // 9.
.should('contain', 'My First Post')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment