Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #58 from matrix-org/revert-56-bwindels/fix-signup
Browse files Browse the repository at this point in the history
Revert "Fix signup: set custom hs through advanced section, and accept IS step"
  • Loading branch information
bwindels committed Sep 10, 2019
2 parents b8b2ef2 + 1659171 commit ad10148
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/usecases/signup.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@ module.exports = async function signup(session, username, password, homeserver)
await session.goto(session.url('/#/register'));
// change the homeserver by clicking the "Change" link.
if (homeserver) {
const advancedButton = await session.query('.mx_ServerTypeSelector_type_Advanced');
await advancedButton.click();
const changeServerDetailsLink = await session.query('.mx_AuthBody_editServerDetails');
await changeServerDetailsLink.click();
const hsInputField = await session.query('#mx_ServerConfig_hsUrl');
await session.replaceInputText(hsInputField, homeserver);
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 session.query('.mx_ServerConfig_identityServer_shown');
await nextButton.click();
Expand Down

0 comments on commit ad10148

Please sign in to comment.