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

33 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-11-27 03:04:28 +08:00
const { expect } = require('@playwright/test');
2021-11-26 02:23:58 +08:00
const path = require('path');
const e = require('../core/elements');
const { ELEMENT_WAIT_LONGER_TIME } = require('../core/constants');
2021-11-27 03:04:28 +08:00
async function checkSvgIndex(test, element) {
const check = await test.page.evaluate(([element]) => {
return document.querySelector('svg g g g').outerHTML.indexOf(element) !== -1;
}, [element]);
await expect(check).toBeTruthy();
}
function getSvgOuterHtml() {
return document.querySelector('svg g g g').outerHTML;
}
2021-11-26 02:23:58 +08:00
async function uploadPresentation(test, fileName, uploadTimeout = ELEMENT_WAIT_LONGER_TIME) {
await test.waitAndClick(e.actions);
await test.waitAndClick(e.uploadPresentation);
await test.waitForSelector(e.fileUpload);
await test.page.setInputFiles(e.fileUpload, path.join(__dirname, `../media/${fileName}`));
await test.hasText('body', 'To be uploaded ...');
await test.waitAndClick(e.upload);
await test.hasText('body', 'Converting file');
await test.hasText('body', 'Current presentation', uploadTimeout);
}
2021-11-27 03:04:28 +08:00
exports.checkSvgIndex = checkSvgIndex;
exports.getSvgOuterHtml = getSvgOuterHtml;
2021-11-26 02:23:58 +08:00
exports.uploadPresentation = uploadPresentation;