bigbluebutton-Github/bigbluebutton-tests/playwright/user/util.js
2022-02-03 17:27:42 -03:00

23 lines
637 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);
}
exports.setStatus = setStatus;
exports.openLockViewers = openLockViewers;
exports.setGuestPolicyOption = setGuestPolicyOption;