poll these as well as ci is slowwww

This commit is contained in:
Bruno Windels 2019-04-16 12:22:48 +02:00
parent ee46c2b030
commit ef59c59f37

View file

@ -23,9 +23,9 @@ module.exports = async function signup(session, username, password, homeserver)
if (homeserver) { if (homeserver) {
const changeServerDetailsLink = await session.waitAndQuery('.mx_AuthBody_editServerDetails'); const changeServerDetailsLink = await session.waitAndQuery('.mx_AuthBody_editServerDetails');
await changeServerDetailsLink.click(); await changeServerDetailsLink.click();
const hsInputField = await session.query('#mx_ServerConfig_hsUrl'); const hsInputField = await session.waitAndQuery('#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.waitAndQuery('.mx_Login_submit');
await nextButton.click(); await nextButton.click();
} }
//fill out form //fill out form
@ -41,7 +41,7 @@ module.exports = async function signup(session, username, password, homeserver)
await session.delay(300); await session.delay(300);
/// focus on the button to make sure error validation /// focus on the button to make sure error validation
/// has happened before checking the form is good to go /// has happened before checking the form is good to go
const registerButton = await session.query('.mx_Login_submit'); const registerButton = await session.waitAndQuery('.mx_Login_submit');
await registerButton.focus(); await registerButton.focus();
//check no errors //check no errors
const error_text = await session.tryGetInnertext('.mx_Login_error'); const error_text = await session.tryGetInnertext('.mx_Login_error');