diff options
Diffstat (limited to '.cypress/cypress/integration/simple_spec.js')
-rw-r--r-- | .cypress/cypress/integration/simple_spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cypress/cypress/integration/simple_spec.js b/.cypress/cypress/integration/simple_spec.js index 01fb77f49..7040681a3 100644 --- a/.cypress/cypress/integration/simple_spec.js +++ b/.cypress/cypress/integration/simple_spec.js @@ -12,8 +12,8 @@ describe('Clicking the map', function() { cy.get('[name=title]').type('Title'); cy.get('[name=detail]').type('Detail'); cy.get('#js-new-report-user-show').click(); - cy.get('[name=username]').type('user@example.org'); cy.get('#js-new-report-show-sign-in').click(); + cy.get('#form_username_sign_in').type('user@example.org'); cy.get('[name=password_sign_in]').type('password'); cy.get('[name=password_sign_in]').parents('form').submit(); cy.get('#map_sidebar').should('contain', 'check and confirm your details'); |