44 lines
2.0 KiB
JavaScript
44 lines
2.0 KiB
JavaScript
const { test } = require('@playwright/test');
|
|
const { SharedNotes, SharedNotesMultiUsers } = require('./sharednotes');
|
|
|
|
test.describe.parallel('Shared Notes', () => {
|
|
test('Open Shared notes @ci', async ({ browser, page, context }) => {
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.openSharedNotes();
|
|
});
|
|
test('Type in shared notes', async ({ browser, page, context }) => {
|
|
// https://docs.bigbluebutton.org/2.5/release-tests.html#using-shared-notes-panel
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.typeInSharedNotes();
|
|
});
|
|
test('Formate text in shared notes', async ({ browser, page, context }) => {
|
|
// https://docs.bigbluebutton.org/2.5/release-tests.html#using-shared-notes-formatting-tools
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.formatTextInSharedNotes();
|
|
});
|
|
test('Export shared notes', async ({ browser, page, context }, testInfo) => {
|
|
// https://docs.bigbluebutton.org/2.5/release-tests.html#exporting-shared-notes
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.exportSharedNotes(page);
|
|
});
|
|
test('Move notes to whiteboard', async ({ browser, page, context }) => {
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.moveNotesToWhiteboard();
|
|
});
|
|
test('Multi users edit', async ({ browser, page, context }) => {
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.editSharedNotesWithMoreThanOneUSer();
|
|
});
|
|
test('See notes without edit permission', async ({ browser, page, context }) => {
|
|
const sharedNotes = new SharedNotes(browser, context);
|
|
await sharedNotes.initPages(page);
|
|
await sharedNotes.seeNotesWithoutEditPermission();
|
|
});
|
|
});
|