2022-09-12 20:33:53 +08:00
|
|
|
const { expect } = require('@playwright/test');
|
2022-08-15 21:37:54 +08:00
|
|
|
const Page = require('../core/page');
|
2022-08-15 20:37:52 +08:00
|
|
|
const { openAboutModal, openSettings, getLocaleValues } = require('./util');
|
2022-08-15 21:37:54 +08:00
|
|
|
const e = require('../core/elements');
|
2022-11-24 22:52:06 +08:00
|
|
|
const { ELEMENT_WAIT_TIME } = require('../core/constants');
|
2022-08-15 20:37:52 +08:00
|
|
|
|
2021-11-16 00:42:29 +08:00
|
|
|
|
2022-08-15 21:37:54 +08:00
|
|
|
class Options extends Page {
|
2021-11-16 00:42:29 +08:00
|
|
|
constructor(browser, page) {
|
|
|
|
super(browser, page);
|
|
|
|
}
|
|
|
|
|
2022-08-15 21:37:54 +08:00
|
|
|
async openedAboutModal() {
|
|
|
|
await openAboutModal(this);
|
|
|
|
await this.hasElement(e.closeModal);
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:52:45 +08:00
|
|
|
async openHelp(context) {
|
|
|
|
await this.waitAndClick(e.optionsButton);
|
|
|
|
|
|
|
|
const newPage = await this.handleNewTab(e.helpButton, context);
|
|
|
|
|
|
|
|
await expect(newPage).toHaveTitle(/BigBlueButton Tutorials/);
|
|
|
|
await this.hasElement(e.presentationTitle);
|
|
|
|
}
|
|
|
|
|
2022-08-15 21:37:54 +08:00
|
|
|
async localesTest() {
|
2022-02-04 02:44:48 +08:00
|
|
|
const selectedKeysBySelector = {
|
|
|
|
[e.messageTitle]: 'app.userList.messagesTitle',
|
|
|
|
[e.notesTitle]: 'app.userList.notesTitle',
|
2022-03-01 03:46:13 +08:00
|
|
|
[e.userListToggleBtn]: 'app.navBar.userListToggleBtnLabel',
|
2022-02-04 02:44:48 +08:00
|
|
|
[e.hidePublicChat]: 'app.chat.titlePublic',
|
|
|
|
[e.sendButton]: 'app.chat.submitLabel',
|
|
|
|
[e.actions]: 'app.actionsBar.actionsDropdown.actionsLabel',
|
|
|
|
[e.joinAudio]: 'app.audio.joinAudio',
|
|
|
|
[e.joinVideo]: 'app.video.joinVideo',
|
|
|
|
[e.startScreenSharing]: 'app.actionsBar.actionsDropdown.desktopShareLabel',
|
|
|
|
[e.minimizePresentation]: 'app.actionsBar.actionsDropdown.minimizePresentationLabel',
|
|
|
|
[e.raiseHandBtn]: 'app.actionsBar.emojiMenu.raiseHandLabel',
|
|
|
|
[e.connectionStatusBtn]: 'app.connection-status.label',
|
|
|
|
[e.optionsButton]: 'app.navBar.settingsDropdown.optionsLabel',
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const locale of e.locales) {
|
2021-12-23 03:06:42 +08:00
|
|
|
console.log(`Testing ${locale} locale`);
|
2022-02-04 02:44:48 +08:00
|
|
|
const currentValuesBySelector = await getLocaleValues(selectedKeysBySelector, locale);
|
|
|
|
|
2022-01-20 03:50:59 +08:00
|
|
|
await openSettings(this);
|
2022-02-03 08:05:26 +08:00
|
|
|
await this.waitForSelector(e.languageSelector);
|
|
|
|
const langDropdown = await this.page.$(e.languageSelector);
|
2021-12-23 03:06:42 +08:00
|
|
|
await langDropdown.selectOption({ value: locale });
|
2022-02-03 08:05:26 +08:00
|
|
|
await this.waitAndClick(e.modalConfirmButton);
|
2022-02-04 02:44:48 +08:00
|
|
|
await this.waitForSelector(e.toastContainer);
|
|
|
|
|
|
|
|
for (const selector in currentValuesBySelector) {
|
|
|
|
await this.hasText(selector, currentValuesBySelector[selector]);
|
|
|
|
}
|
2021-12-23 03:06:42 +08:00
|
|
|
}
|
2021-11-16 00:42:29 +08:00
|
|
|
}
|
2022-11-11 04:25:18 +08:00
|
|
|
|
|
|
|
async darkMode() {
|
|
|
|
await openSettings(this);
|
|
|
|
|
|
|
|
await this.waitAndClickElement(e.darkModeToggleBtn);
|
|
|
|
await this.waitAndClick(e.modalConfirmButton);
|
|
|
|
|
|
|
|
//Checking user list
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.waitAndClick(e.sharedNotes, ELEMENT_WAIT_TIME);
|
|
|
|
await this.backgroundColorTest(e.sharedNotesBackground, 'rgb(34, 36, 37)');
|
2022-11-11 04:25:18 +08:00
|
|
|
await this.waitAndClick(e.manageUsers);
|
|
|
|
await this.waitAndClick(e.guestPolicyLabel);
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.simpleModal, 'rgb(34, 36, 37)');
|
2022-11-11 04:25:18 +08:00
|
|
|
await this.waitAndClick(e.closeModal);
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.waitAndClick(e.chatButton);
|
|
|
|
await this.backgroundColorTest(e.chatButton, 'rgb(48, 51, 52)');
|
|
|
|
await this.textColorTest(e.chatButton, 'rgb(208, 205, 201)');
|
|
|
|
await this.textColorTest(e.hidePublicChat, 'rgb(170, 164, 155)');
|
|
|
|
await this.textColorTest(`${e.chatOptions} >> span`, 'rgb(170, 164, 155)');
|
2022-11-11 04:25:18 +08:00
|
|
|
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.textColorTest(`${e.manageUsers} >> span`, 'rgb(170, 164, 155)');
|
2022-11-11 04:25:18 +08:00
|
|
|
await this.waitAndClick(e.manageUsers);
|
|
|
|
await this.waitAndClick(e.lockViewersButton);
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.simpleModal, 'rgb(34, 36, 37)');
|
2022-11-11 04:25:18 +08:00
|
|
|
await this.waitAndClick(e.applyLockSettings);
|
|
|
|
|
|
|
|
//Checking public chat
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.publicChat, 'rgb(34, 36, 37)');
|
|
|
|
await this.backgroundColorTest(e.chatWelcomeMessageText, 'rgb(37, 39, 40)');
|
|
|
|
await this.backgroundColorTest(`${e.sendButton} >> span`, 'rgb(24, 94, 168)');
|
|
|
|
await this.backgroundColorTest(e.chatBox, 'rgb(34, 36, 37)');
|
|
|
|
await this.textColorTest(e.chatBox, 'rgb(170, 164, 155)');
|
2022-11-11 04:25:18 +08:00
|
|
|
|
2022-11-17 04:15:24 +08:00
|
|
|
// Checking actions bar background and buttons color
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.actionsBarBackground, 'rgb(30, 32, 33)')
|
|
|
|
await this.textColorTest(`${e.joinAudio} >> span`, 'rgb(222, 220, 217)');
|
|
|
|
await this.backgroundColorTest(`${e.joinAudio} >> span`, 'rgba(0, 0, 0, 0)');
|
|
|
|
await this.textColorTest(`${e.joinVideo} >> span`, 'rgb(222, 220, 217)');
|
|
|
|
await this.backgroundColorTest(`${e.joinVideo} >> span`, 'rgba(0, 0, 0, 0)');
|
|
|
|
await this.textColorTest(`${e.startScreenSharing} >> span`, 'rgb(222, 220, 217)');
|
|
|
|
await this.backgroundColorTest(`${e.startScreenSharing} >> span`, 'rgba(0, 0, 0, 0)');
|
|
|
|
await this.textColorTest(`${e.raiseHandBtn} >> span`, 'rgb(222, 220, 217)');
|
|
|
|
await this.backgroundColorTest(`${e.raiseHandBtn} >> span`, 'rgba(0, 0, 0, 0)');
|
|
|
|
await this.backgroundColorTest(`${e.actions} >> span`, 'rgb(24, 94, 168)');
|
|
|
|
await this.backgroundColorTest(`${e.minimizePresentation} >> span`, 'rgb(24, 94, 168)');
|
2022-11-12 01:03:04 +08:00
|
|
|
|
2022-11-11 04:25:18 +08:00
|
|
|
// Checking buttons background and navbar background
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.navbarBackground, 'rgb(30, 32, 33)');
|
|
|
|
await this.textColorTest(`${e.userListToggleBtn} >> span`, 'rgb(222, 220, 217)');
|
|
|
|
await this.textColorTest(`${e.optionsButton} >> span`, 'rgb(222, 220, 217)');
|
2022-11-12 01:03:04 +08:00
|
|
|
|
2022-11-15 21:27:24 +08:00
|
|
|
// Checking presentation area
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.whiteboardOptionsButton, 'rgb(34, 36, 37)');
|
|
|
|
await this.textColorTest(e.whiteboardOptionsButton, 'rgb(208, 205, 201)');
|
2022-11-11 04:25:18 +08:00
|
|
|
await this.waitAndClick(e.optionsButton);
|
|
|
|
await this.waitAndClick(e.settings);
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.fullscreenModal, 'rgb(34, 36, 37)');
|
2022-11-11 04:25:18 +08:00
|
|
|
await this.waitAndClick(e.modalConfirmButton);
|
2022-11-24 22:52:06 +08:00
|
|
|
await this.backgroundColorTest(e.presentationToolbarWrapper, 'rgb(39, 42, 42)');
|
2022-11-11 04:25:18 +08:00
|
|
|
}
|
2023-01-19 00:29:45 +08:00
|
|
|
|
|
|
|
async fontSizeTest() {
|
|
|
|
// Increasing font size
|
|
|
|
await openSettings(this);
|
|
|
|
await this.waitAndClick(e.increaseFontSize);
|
|
|
|
await this.waitAndClick(e.modalConfirmButton);
|
|
|
|
|
|
|
|
await this.fontSizeCheck(e.chatButton, '16px');//text + icon
|
|
|
|
await this.fontSizeCheck(e.chatWelcomeMessageText, '16px');
|
|
|
|
await this.fontSizeCheck(e.chatMessages, '16px');
|
|
|
|
await this.fontSizeCheck(e.sharedNotes, '14px');
|
|
|
|
await this.fontSizeCheck(e.userslist, '16px');
|
|
|
|
await this.fontSizeCheck(e.currentUser, '16px');
|
|
|
|
await this.fontSizeCheck(e.actionsBarBackground, '16px');
|
|
|
|
await this.fontSizeCheck(e.navbarBackground, '24px');
|
|
|
|
|
|
|
|
// Decreasing font size
|
|
|
|
await openSettings(this);
|
|
|
|
await this.waitAndClick(e.descreaseFontSize);
|
|
|
|
await this.waitAndClick(e.descreaseFontSize);
|
|
|
|
await this.waitAndClick(e.modalConfirmButton);
|
|
|
|
|
|
|
|
await this.fontSizeCheck(e.chatButton, '12px');
|
|
|
|
await this.fontSizeCheck(e.chatWelcomeMessageText, '12px');
|
|
|
|
await this.fontSizeCheck(e.chatMessages, '12px')
|
|
|
|
await this.fontSizeCheck(e.sharedNotes, '10.5px');
|
|
|
|
await this.fontSizeCheck(e.userslist, '12px');
|
|
|
|
await this.fontSizeCheck(e.currentUser, '12px');
|
|
|
|
await this.fontSizeCheck(e.actionsBarBackground, '12px');
|
|
|
|
await this.fontSizeCheck(e.navbarBackground, '18px');
|
|
|
|
}
|
2021-11-16 00:42:29 +08:00
|
|
|
}
|
|
|
|
|
2022-08-15 21:37:54 +08:00
|
|
|
exports.Options = Options;
|