2018-08-08 15:22:54 +02:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
2019-12-20 01:45:24 +01:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2018-08-08 15:22:54 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2018-08-08 15:22:54 +02:00
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-07-08 00:34:42 +02:00
|
|
|
const {findSublist} = require("./create-room");
|
|
|
|
|
2020-01-10 18:13:41 +01:00
|
|
|
module.exports = async function acceptInvite(session, name) {
|
2018-08-14 12:53:16 +02:00
|
|
|
session.log.step(`accepts "${name}" invite`);
|
2020-07-08 00:34:42 +02:00
|
|
|
const inviteSublist = await findSublist("invites");
|
|
|
|
const invitesHandles = await inviteSublist.$(".mx_RoomTile2_name");
|
2018-08-14 12:53:16 +02:00
|
|
|
const invitesWithText = await Promise.all(invitesHandles.map(async (inviteHandle) => {
|
|
|
|
const text = await session.innerText(inviteHandle);
|
|
|
|
return {inviteHandle, text};
|
|
|
|
}));
|
|
|
|
const inviteHandle = invitesWithText.find(({inviteHandle, text}) => {
|
2020-01-10 18:13:41 +01:00
|
|
|
return text.trim() === name;
|
2018-08-14 12:53:16 +02:00
|
|
|
}).inviteHandle;
|
|
|
|
|
|
|
|
await inviteHandle.click();
|
|
|
|
|
2019-04-17 11:44:32 +02:00
|
|
|
const acceptInvitationLink = await session.query(".mx_RoomPreviewBar_Invite .mx_AccessibleButton_kind_primary");
|
2018-08-14 12:53:16 +02:00
|
|
|
await acceptInvitationLink.click();
|
|
|
|
|
|
|
|
session.log.done();
|
2019-10-09 17:51:50 +02:00
|
|
|
};
|