From 7c3a6a223eadad081967bfc499c21e8ae1012082 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 10 Oct 2019 14:56:20 +0200 Subject: [PATCH] Fix failing cypress test Signed-off-by: Thomas Citharel --- js/tests/e2e/specs/register.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tests/e2e/specs/register.js b/js/tests/e2e/specs/register.js index 602dcdf7..9cc3aa1b 100644 --- a/js/tests/e2e/specs/register.js +++ b/js/tests/e2e/specs/register.js @@ -43,7 +43,7 @@ describe('Registration', () => { cy.get('form .field').first().contains('label', 'Username').parent().find('input').type('tester'); cy.get('form .field').eq(2).contains('label', 'Displayed name').parent().find('input').type('tester account'); cy.get('form .field').eq(3).contains('label', 'Description').parent().find('textarea').type('This is a test account'); - cy.get('form .field').last().contains('button', 'Create my profile').click(); + cy.get('.control.has-text-centered').contains('button', 'Create my profile').click(); cy.contains('article.message.is-success', 'Your account is nearly ready, tester').contains('A validation email was sent to user@email.com');