Fix signup: set custom hs through advanced section, and accept IS step

pull/21833/head
Bruno Windels 2019-09-10 16:25:59 +02:00
parent a72934556c
commit 67b03b5a0f
1 changed files with 6 additions and 2 deletions

View File

@ -21,11 +21,15 @@ module.exports = async function signup(session, username, password, homeserver)
await session.goto(session.url('/#/register')); await session.goto(session.url('/#/register'));
// change the homeserver by clicking the "Change" link. // change the homeserver by clicking the "Change" link.
if (homeserver) { if (homeserver) {
const changeServerDetailsLink = await session.query('.mx_AuthBody_editServerDetails'); const advancedButton = await session.query('.mx_ServerTypeSelector_type_Advanced');
await changeServerDetailsLink.click(); await advancedButton.click();
const hsInputField = await session.query('#mx_ServerConfig_hsUrl'); const hsInputField = await session.query('#mx_ServerConfig_hsUrl');
await session.replaceInputText(hsInputField, homeserver); await session.replaceInputText(hsInputField, homeserver);
const nextButton = await session.query('.mx_Login_submit'); const nextButton = await session.query('.mx_Login_submit');
// accept homeserver
await nextButton.click();
await session.delay(200);
// accept discovered identity server
await nextButton.click(); await nextButton.click();
} }
//fill out form //fill out form