bigbluebutton-Github/bigbluebutton-tests/playwright/sharednotes/sharednotes.js

15 lines
286 B
JavaScript
Raw Normal View History

2021-11-30 02:39:52 +08:00
const Page = require('../core/page');
const { startSharedNotes } = require('./util');
2021-11-30 02:39:52 +08:00
class SharedNotes extends Page {
constructor(browser, page) {
super(browser, page);
}
async openSharedNotes() {
await startSharedNotes(this);
2021-11-30 02:39:52 +08:00
}
}
2021-12-04 01:01:36 +08:00
exports.SharedNotes = SharedNotes;