diff --git a/bigbluebutton-html5/tests/puppeteer/notes/elements.js b/bigbluebutton-html5/tests/puppeteer/notes/elements.js new file mode 100644 index 0000000000000000000000000000000000000000..2c0719e3d6aea5378a4e6f2407d20e11a933e1f1 --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/notes/elements.js @@ -0,0 +1,3 @@ +exports.sharedNotes = 'div[data-test="sharedNotes"]'; +exports.hideNoteLabel = 'button[data-test="hideNoteLabel"]'; +exports.etherpad = 'iframe[title="etherpad"]'; diff --git a/bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js b/bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js new file mode 100644 index 0000000000000000000000000000000000000000..23664c0a9ce954866a14e440127f902a146d70a9 --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js @@ -0,0 +1,19 @@ +const Create = require('../breakout/create'); +const util = require('./util'); + +class SharedNotes extends Create { + constructor() { + super('shared-notes'); + } + + async test() { + const response = await util.startSharedNotes(this.page1); + return response; + } + + async close() { + await this.page1.close(); + await this.page2.close(); + } +} +module.exports = exports = SharedNotes; diff --git a/bigbluebutton-html5/tests/puppeteer/notes/util.js b/bigbluebutton-html5/tests/puppeteer/notes/util.js new file mode 100644 index 0000000000000000000000000000000000000000..82754966ed04c7273fdaa64be2f3151c63b1d198 --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/notes/util.js @@ -0,0 +1,18 @@ +const se = require('./elements'); + +async function startSharedNotes(test) { + await test.waitForSelector(se.sharedNotes); + await test.click(se.sharedNotes, true); + await test.waitForSelector(se.hideNoteLabel); + const resp = await test.page.evaluate(getTestElement, se.etherpad); + await test.waitForSelector(se.etherpad); + return resp; +} + +async function getTestElement(element) { + const response = document.querySelectorAll(element).length >= 1; + return response; +} + +exports.getTestElement = getTestElement; +exports.startSharedNotes = startSharedNotes; diff --git a/bigbluebutton-html5/tests/puppeteer/sharednotes.test.js b/bigbluebutton-html5/tests/puppeteer/sharednotes.test.js new file mode 100644 index 0000000000000000000000000000000000000000..67aad3cd7cc6da8d446bbb73211c0768a6bd6e50 --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/sharednotes.test.js @@ -0,0 +1,17 @@ +const SharedNotes = require('./notes/sharednotes'); + +describe('Shared notes', () => { + test('Open Shared notes', async () => { + const test = new SharedNotes(); + let response; + try { + await test.init(); + response = await test.test(); + } catch (e) { + console.log(e); + } finally { + await test.close(); + } + expect(response).toBe(true); + }); +});