Skip to content

Instantly share code, notes, and snippets.

@jgonera
Created November 7, 2016 17:53
Show Gist options
  • Save jgonera/2e97b7893403c7a0d19300ca57525eb0 to your computer and use it in GitHub Desktop.
Save jgonera/2e97b7893403c7a0d19300ca57525eb0 to your computer and use it in GitHub Desktop.
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