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

9 lines
191 B
JavaScript
Raw Normal View History

2021-11-18 04:07:14 +08:00
const e = require('../core/elements');
async function openChat(page) {
2021-11-18 04:07:14 +08:00
await page.waitForSelector(e.chatBox);
await page.waitForSelector(e.chatMessages);
}
2021-11-03 06:50:20 +08:00
exports.openChat = openChat;