diff --git a/appium/tests/specs/initial-app-sreen.e2e.js b/appium/tests/specs/initial-app-sreen.e2e.js index 419f16cc1..fea2dd44a 100644 --- a/appium/tests/specs/initial-app-sreen.e2e.js +++ b/appium/tests/specs/initial-app-sreen.e2e.js @@ -10,4 +10,11 @@ describe('Verify initial app screen', () => { const status = await $('~enter-workspace-url').getText(); expect(status).to.equal('mobile'); }); + + it('set workspace url and login', async () => { + await $('~enter-workspace-url').setValue('mobile'); + await $('~new-server-view-button').click(); + const register = await $('//android.widget.TextView[@content-desc="Create an account"]').getText(); + expect(register).to.equal('Create an account'); + }); });