bigbluebutton-Github/bigbluebutton-tests/puppeteer/breakout/util.js

12 lines
385 B
JavaScript
Raw Normal View History

const e = require('../core/elements');
2020-02-22 02:06:05 +08:00
async function createBreakoutRooms(page1, page2) {
await page1.waitAndClick(e.manageUsers);
await page1.waitAndClick(e.createBreakoutRooms);
await page1.waitAndClick(e.randomlyAssign);
await page1.waitAndClick(e.modalConfirmButton);
await page2.waitAndClick(e.modalConfirmButton);
2020-02-22 02:06:05 +08:00
}
exports.createBreakoutRooms = createBreakoutRooms;