From 61235820f100911d8df45d7ddff3b069b1da1064 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 13 May 2026 14:21:00 +0200 Subject: [PATCH] Fix tests --- test/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.js b/test/test.js index 6c7842f..fdfae4a 100755 --- a/test/test.js +++ b/test/test.js @@ -21,8 +21,8 @@ describe('Application life cycle test', function () { async function login(addr, pass) { await goto(`https://${app.fqdn}/auth/sign_in`, 'Log in'); - await sendKeys('css=#user_email', addr); - await sendKeys('css=#user_password', pass); + await sendKeys('label=E-mail address', addr); + await sendKeys('label=Password', pass); await click('Log in'); } @@ -53,7 +53,7 @@ describe('Application life cycle test', function () { }); it('shows confirmation page', async function () { - await waitFor('css=a[href="/auth/confirmation/new"], form#edit_user_1'); + await waitFor('Check your inbox'); }); it('uninstall app (no sso)', cloudronCli.uninstall);