aa57d4528b
* first steps * few messages added * added more messages to the failed tests * layouts,notifications * more messages to help * adding messages to the upload other presentations format * messages for upload multiple presentation test * added most of the expect messages * updates for merging * fixed broken tests
37 lines
1.6 KiB
JavaScript
37 lines
1.6 KiB
JavaScript
const { test } = require('@playwright/test');
|
|
const e = require('../core/elements.js');
|
|
const { getSettings } = require('../core/settings.js');
|
|
const path = require('path');
|
|
|
|
async function openPoll(testPage) {
|
|
const { pollEnabled } = getSettings();
|
|
test.fail(!pollEnabled, 'Polling is disabled');
|
|
|
|
await testPage.waitAndClick(e.actions);
|
|
await testPage.waitAndClick(e.polling);
|
|
await testPage.hasElement(e.hidePollDesc, 'should display the hide poll description when creating a new poll');
|
|
await testPage.waitAndClick(e.pollLetterAlternatives);
|
|
await testPage.checkElementCount(e.pollOptionItem, 4, 'should display the poll options item for the poll answers');
|
|
}
|
|
|
|
async function startPoll(test, isAnonymous = false) {
|
|
await openPoll(test);
|
|
if (isAnonymous) await test.getLocator(e.anonymousPoll).setChecked();
|
|
await test.waitAndClick(e.startPoll);
|
|
}
|
|
|
|
async function uploadSPresentationForTestingPolls(test, fileName) {
|
|
await test.waitAndClick(e.actions);
|
|
await test.waitAndClick(e.managePresentations);
|
|
await test.hasElement(e.presentationFileUpload, 'should display the presentation file upload on the manage presentations modal');
|
|
|
|
await test.page.setInputFiles(e.presentationFileUpload, path.join(__dirname, `../core/media/${fileName}`));
|
|
await test.hasText('body', e.statingUploadPresentationToast, 'should display the presentation toast about the upload');
|
|
|
|
await test.waitAndClick(e.confirmManagePresentation);
|
|
}
|
|
|
|
exports.openPoll = openPoll;
|
|
exports.startPoll = startPoll;
|
|
exports.uploadSPresentationForTestingPolls = uploadSPresentationForTestingPolls;
|