bigbluebutton-Github/bigbluebutton-tests/playwright/user/util.js
2022-02-07 15:01:47 -03:00

28 lines
839 B
JavaScript

const e = require('../core/elements');
async function setStatus(page, status) {
await page.waitAndClick(e.firstUser);
await page.waitAndClick(e.setStatus);
await page.waitAndClick(status);
}
async function openLockViewers(test) {
await test.waitAndClick(e.manageUsers);
await test.waitAndClick(e.lockViewersButton);
}
async function setGuestPolicyOption(test, option) {
await test.waitAndClick(e.manageUsers);
await test.waitAndClick(e.guestPolicyLabel);
await test.waitAndClick(option);
}
async function checkAvatarIcon(test, checkModIcon = true) {
await test.hasElement(`${e.firstUser} ${checkModIcon ? e.moderatorAvatar : e.viewerAvatar}`);
}
exports.setStatus = setStatus;
exports.openLockViewers = openLockViewers;
exports.setGuestPolicyOption = setGuestPolicyOption;
exports.checkAvatarIcon = checkAvatarIcon;