bigbluebutton-Github/bigbluebutton-html5/tests/puppeteer/presentation/slide.js
Mohamed Amine Ben Salah 76cd0fb28a removes TODO comments
2020-02-26 10:48:34 -03:00

44 lines
1.0 KiB
JavaScript

const Page = require('../core/page');
const e = require('./elements');
const we = require('../whiteboard/elements');
class Slide extends Page {
constructor() {
super('presentation-slide');
}
async test() {
await this.waitForSelector(we.whiteboard);
await this.waitForSelector(e.presentationToolbarWrapper);
await this.screenshot(true);
const svg0 = await this.getTestElements();
await this.click(e.nextSlide, true);
await this.screenshot(true);
const svg1 = await this.getTestElements();
await this.click(e.prevSlide, true);
await this.screenshot(true);
const svg2 = await this.getTestElements();
console.log('\nStarting slide:');
console.log(svg0);
console.log('\nAfter next slide:');
console.log(svg1);
console.log('\nAfter previous slide:');
console.log(svg2);
return svg0 !== svg1 && svg1 !== svg2;
}
async getTestElements() {
const svg = await this.page.evaluate(() => document.querySelector('svg g g g').outerHTML);
return svg;
}
}
module.exports = exports = Slide;