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

74 lines
2.6 KiB
JavaScript
Raw Normal View History

const { expect } = require('@playwright/test');
2022-06-08 02:52:22 +08:00
const { ELEMENT_WAIT_LONGER_TIME } = require('../core/constants');
2021-12-01 13:36:20 +08:00
const e = require('../core/elements');
const { sleep } = require('../core/helpers');
2022-06-08 02:52:22 +08:00
const { checkElement } = require('../core/util');
2021-12-01 13:36:20 +08:00
async function enableChatPopup(test) {
await test.waitAndClick(e.notificationsTab);
2022-01-20 21:03:18 +08:00
await test.waitAndClickElement(e.chatPopupAlertsBtn);
2021-12-01 13:36:20 +08:00
}
async function enableUserJoinPopup(test) {
await test.waitAndClick(e.notificationsTab);
await test.waitAndClickElement(e.userJoinPushAlerts);
}
async function saveSettings(page) {
await page.waitAndClick(e.modalConfirmButton);
}
async function checkNotificationText(test, text) {
await test.hasText(e.smallToastMsg, text);
}
async function checkNotificationIcon(test, icon) {
const check = await test.checkElement(`${e.toastContainer} ${icon}`);
expect(check).toBeTruthy();
}
2021-12-01 13:36:20 +08:00
async function publicChatMessageToast(page1, page2) {
// Open private Chat with the other User
await page1.waitAndClick(e.userListItem);
2022-01-20 21:03:18 +08:00
await page1.waitAndClick(e.startPrivateChat);
2022-06-08 02:52:22 +08:00
await page1.waitForSelector(e.hidePrivateChat);
2021-12-01 13:36:20 +08:00
// send a public message
await page2.type(e.chatBox, e.publicMessage1);
await page2.waitAndClick(e.sendButton);
}
async function privateChatMessageToast(page2) {
// Open private Chat with the other User
await page2.waitAndClick(e.userListItem);
2022-01-20 21:03:18 +08:00
await page2.waitAndClick(e.startPrivateChat);
2021-12-01 13:36:20 +08:00
// wait for the private chat to be ready
2022-02-05 03:26:35 +08:00
await page2.waitUntilHaveCountSelector(e.chatButton, 2);
2021-12-01 13:36:20 +08:00
// send a private message
await page2.type(e.chatBox, e.message1);
await sleep(1000);
2021-12-01 13:36:20 +08:00
await page2.waitAndClick(e.sendButton);
}
2022-06-08 02:52:22 +08:00
async function waitAndClearNotification(testPage) {
await testPage.waitAndClick(e.smallToastMsg, ELEMENT_WAIT_LONGER_TIME);
await testPage.wasRemoved(e.smallToastMsg);
}
async function waitAndClearDefaultPresentationNotification(testPage) {
const hasPresentationUploaded = await testPage.page.evaluate(checkElement, e.whiteboard);
if (!hasPresentationUploaded) {
await testPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await waitAndClearNotification(testPage);
}
}
2021-12-01 13:36:20 +08:00
exports.privateChatMessageToast = privateChatMessageToast;
exports.publicChatMessageToast = publicChatMessageToast;
exports.enableUserJoinPopup = enableUserJoinPopup;
exports.checkNotificationText = checkNotificationText;
exports.checkNotificationIcon = checkNotificationIcon;
2021-12-01 13:36:20 +08:00
exports.enableChatPopup = enableChatPopup;
exports.saveSettings = saveSettings;
exports.waitAndClearNotification = waitAndClearNotification;
2022-06-08 02:52:22 +08:00
exports.waitAndClearDefaultPresentationNotification = waitAndClearDefaultPresentationNotification;