mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Merge pull request #62 from matrix-org/bwindels/morecustomhsregisterfix
Fix: only need 2 "Next" clicks, not 3, when setting a custom HS during registration
This commit is contained in:
commit
912a974725
1 changed files with 1 additions and 3 deletions
|
@ -28,10 +28,8 @@ module.exports = async function signup(session, username, password, 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');
|
||||
// accept default identity server
|
||||
await nextButton.click();
|
||||
}
|
||||
//fill out form
|
||||
|
|
Loading…
Reference in a new issue