bigbluebutton-Github/bigbluebutton-tests/playwright/chat/util.js
2021-11-18 16:20:11 -03:00

9 lines
191 B
JavaScript

const e = require('../core/elements');
async function openChat(page) {
await page.waitForSelector(e.chatBox);
await page.waitForSelector(e.chatMessages);
}
exports.openChat = openChat;