Last active
February 16, 2020 04:49
-
-
Save randalvance/d24343058890b1a347563ee20bcaa044 to your computer and use it in GitHub Desktop.
This file contains 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('UI Tests', function() { | |
it('should navigate to Success Page after submitting.',function(){ | |
// first visit the site | |
cy.visit('http://localhost:3000'); | |
// get elements we will be | |
// interacting with and alias them | |
cy.get('input[name="firstName"]').as('firstNameText'); | |
cy.get('input[name="lastName"]').as('lastNameText'); | |
cy.get('select[name="gender"]').as('genderSelect'); | |
cy.get('input[name="areYouAwesome"]') | |
.as('areYouAwesomeCheck'); | |
cy.get('a').as('submitButton'); | |
// interact with the elements | |
cy.get('@firstNameText').type('Randal'); | |
cy.get('@lastNameText').type('Cunanan'); | |
cy.get('@genderSelect').select('Male'); | |
cy.get('@areYouAwesomeCheck').check(); | |
cy.get('@submitButton').click(); | |
// wait for the Success! message | |
cy.get('.message').as('message'); | |
// Assert that we are in the next page | |
cy.url().should('include', 'page2'); | |
cy.get('@message').should('have.text', 'Success!'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment