Created
November 7, 2016 17:53
-
-
Save jgonera/2e97b7893403c7a0d19300ca57525eb0 to your computer and use it in GitHub Desktop.
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('Airbnb', function(){ | |
it('opens login modal', function(){ | |
cy.visit('http://www.airbnb.com'); | |
cy.title().should('include', 'Vacation'); | |
//cy.pause(); | |
cy.get('#new-header > div:nth-child(3) > a').click(); | |
cy.get('#signin_email').type("[email protected]"); | |
cy.get('#signin_password').type("1234"); | |
//cy.get('#user-login-btn').click(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment