bigbluebutton-Github/bigbluebutton-tests/playwright/user/status.js
2022-01-19 16:50:59 -03:00

30 lines
799 B
JavaScript

const Page = require('../core/page');
const { setStatus } = require('./util');
const { waitAndClearNotification } = require('../notifications/util');
const e = require('../core/elements');
class Status extends Page {
constructor(browser, page) {
super(browser, page);
}
async changeUserStatus() {
await setStatus(this, e.applaud);
await this.waitForSelector(e.smallToastMsg);
await this.checkElement(e.applauseIcon);
await waitAndClearNotification(this);
await setStatus(this, e.away);
await this.waitForSelector(e.smallToastMsg);
await this.checkElement(e.awayIcon);
}
async mobileTagName() {
await this.waitAndClick(e.userList);
await this.waitForSelector(e.firstUser);
await this.hasElement(e.mobileUser);
}
}
exports.Status = Status;