Created
March 16, 2019 10:23
-
-
Save brpaz/ea3dda6a18c471980551d160507e1cfa to your computer and use it in GitHub Desktop.
Saved from https://docs.cypress.io/guides/core-concepts/introduction-to-cypress.html#Cypress-Is-Simple
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
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