bigbluebutton-Github/bigbluebutton-tests/playwright/user/util.js

40 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-11-18 04:07:14 +08:00
const e = require('../core/elements');
async function setStatus(page, status) {
await page.waitAndClick(e.currentUser);
await page.waitAndClick(e.setStatus);
await page.waitAndClick(status);
}
2022-01-29 03:52:22 +08:00
async function openLockViewers(test) {
await test.waitAndClick(e.manageUsers);
await test.waitAndClick(e.lockViewersButton);
}
2022-02-04 04:10:26 +08:00
async function setGuestPolicyOption(test, option) {
await test.waitAndClick(e.manageUsers);
await test.waitAndClick(e.guestPolicyLabel);
await test.waitAndClick(option);
}
2022-02-08 02:01:47 +08:00
async function checkAvatarIcon(test, checkModIcon = true) {
await test.hasElement(`${e.currentUser} ${checkModIcon ? e.moderatorAvatar : e.viewerAvatar}`);
2022-02-08 02:01:47 +08:00
}
async function checkIsPresenter(test) {
return test.page.evaluate(([currentAvatarSelector, userAvatarSelector]) => {
return document.querySelectorAll(`${currentAvatarSelector} ${userAvatarSelector}`)[0].hasAttribute('data-test-presenter')
}, [e.currentUser, e.userAvatar])
2022-02-08 02:45:42 +08:00
}
2022-12-08 02:53:56 +08:00
async function checkMutedUsers(test) {
await test.wasRemoved(e.muteMicButton);
await test.hasElement(e.unmuteMicButton);
}
2021-12-04 01:01:36 +08:00
exports.setStatus = setStatus;
2022-01-29 03:52:22 +08:00
exports.openLockViewers = openLockViewers;
2022-02-04 04:10:26 +08:00
exports.setGuestPolicyOption = setGuestPolicyOption;
2022-02-08 02:01:47 +08:00
exports.checkAvatarIcon = checkAvatarIcon;
exports.checkIsPresenter = checkIsPresenter;
2022-12-08 02:53:56 +08:00
exports.checkMutedUsers = checkMutedUsers;