bigbluebutton-Github/bigbluebutton-tests/playwright/learningdashboard/learningdashboard.js
2023-03-08 17:34:54 -03:00

123 lines
4.9 KiB
JavaScript

const { MultiUsers } = require("../user/multiusers");
const e = require('../core/elements');
const util = require('../polling/util.js');
const { openChat } = require('../chat/util');
const { expect } = require("@playwright/test");
const Page = require("../core/page");
const { sleep } = require("../core/helpers");
const { ELEMENT_WAIT_LONGER_TIME } = require("../core/constants");
const { openPoll } = require("./util");
class LearningDashboard extends MultiUsers {
constructor(browser, context) {
super(browser, context);
}
async getDashboardPage(context) {
await this.modPage.waitAndClick(e.manageUsers);
const [dashboardPage] = await Promise.all([
context.waitForEvent('page'),
this.modPage.waitAndClick(e.learningDashboard),
]);
await expect(dashboardPage).toHaveTitle(/Dashboard/);
this.dashboardPage = new Page(context, dashboardPage);
}
async writeOnPublicChat() {
await openChat(this.modPage);
await this.modPage.checkElementCount(e.chatUserMessageText, 0);
await this.modPage.type(e.chatBox, e.message);
await this.modPage.waitAndClick(e.sendButton);
await this.modPage.checkElementCount(e.chatUserMessageText, 1);
await this.dashboardPage.hasText(e.messageLearningDashboard, '1', ELEMENT_WAIT_LONGER_TIME);
}
async userTimeOnMeeting() {
await this.modPage.waitAndClick(e.recordingIndicator);
await this.modPage.waitAndClick(e.confirmRecording);
await this.modPage.hasText(e.recordingIndicator, '00:0000:00');
const timeTest = await (this.dashboardPage.getLocator(e.userOnlineTime)).textContent();
const [hours, minutes, seconds] = timeTest.split(':').map(Number);
const timeInSeconds = hours * 3600 + minutes * 60 + seconds;
await sleep(1000);
await this.dashboardPage.reloadPage();
const timeTestGreater = await (this.dashboardPage.getLocator(e.userOnlineTime)).textContent();
const [hoursGreater, minutesGreater, secondsGreater] = timeTestGreater.split(':').map(Number);
const timeInSecondsGreater = hoursGreater * 3600 + minutesGreater * 60 + secondsGreater;
await expect(timeInSecondsGreater).toBeGreaterThan(timeInSeconds);
}
async polls() {
// True/False
await openPoll(this.modPage);
await this.modPage.type(e.pollQuestionArea, 'True/False?');
await this.modPage.waitAndClick(e.pollTrueFalse);
await this.modPage.waitAndClick(e.startPoll);
await this.userPage.waitAndClick(e.pollAnswerOptionBtn);
await this.modPage.hasText(e.numberVotes, '1');
await this.modPage.waitAndClick(e.cancelPollBtn);
//ABCD
await this.modPage.getLocator(e.pollQuestionArea).fill(' ');
await this.modPage.type(e.pollQuestionArea, 'ABCD?');
await this.modPage.waitAndClick(e.pollLetterAlternatives);
await this.modPage.waitAndClick(e.startPoll);
await this.userPage.waitAndClick(e.pollAnswerOptionBtn);
await this.modPage.hasText(e.numberVotes, '1');
await this.modPage.waitAndClick(e.cancelPollBtn);
//Yes/No/Abstention
await this.modPage.getLocator(e.pollQuestionArea).fill(' ');
await this.modPage.type(e.pollQuestionArea, 'Yes/No/Abstention?');
await this.modPage.waitAndClick(e.pollYesNoAbstentionBtn);
await this.modPage.waitAndClick(e.startPoll);
await this.userPage.waitAndClick(e.pollAnswerOptionBtn);
await this.modPage.hasText(e.numberVotes, '1');
await this.modPage.waitAndClick(e.cancelPollBtn);
//User Response
await this.modPage.getLocator(e.pollQuestionArea).fill(' ');
await this.modPage.type(e.pollQuestionArea, 'User response?');
await this.modPage.waitAndClick(e.userResponseBtn);
await this.modPage.waitAndClick(e.startPoll);
await this.userPage.waitForSelector(e.pollingContainer);
await this.userPage.type(e.pollAnswerOptionInput, e.answerMessage);
await this.userPage.waitAndClick(e.pollSubmitAnswer);
await this.modPage.hasText(e.numberVotes, '1');
await this.modPage.waitAndClick(e.cancelPollBtn);
//Checking Polls on Learning Dashboard
await this.dashboardPage.waitAndClick(e.pollPanel);
//True / False
await this.dashboardPage.hasText(e.pollTrueFalseQuestion, 'True/False?', ELEMENT_WAIT_LONGER_TIME);
await this.dashboardPage.hasText(e.pollTrueFalseAnswer, 'True');
//ABCD
await this.dashboardPage.hasText(e.pollABCDQuestion, 'ABCD?', ELEMENT_WAIT_LONGER_TIME);
await this.dashboardPage.hasText(e.pollABCDAnswer, 'A');
//Yes No
await this.dashboardPage.hasText(e.pollYesNoQuestion, 'Yes/No/Abstention?', ELEMENT_WAIT_LONGER_TIME);
await this.dashboardPage.hasText(e.pollYesNoAnswer, 'Yes');
// User Response
await this.dashboardPage.hasText(e.pollUserResponseQuestion, 'User response?', ELEMENT_WAIT_LONGER_TIME);
await this.dashboardPage.hasText(e.pollUserResponseAnswer, e.answerMessage);
await this.dashboardPage.hasText(e.pollTotal, '4');
}
}
exports.LearningDashboard = LearningDashboard;