bigbluebutton-Github/bigbluebutton-tests/playwright/user/status.js
Gabriel Luiz Porfirio c07f7efba0
Update string
Co-authored-by: Anton Barboza de Sá <antonbsa.bck@gmail.com>
2023-07-17 13:51:59 -03:00

36 lines
1.1 KiB
JavaScript

const { default: test } = require('@playwright/test');
const Page = require('../core/page');
const { setStatus } = require('./util');
const { waitAndClearNotification, waitAndClearDefaultPresentationNotification } = require('../notifications/util');
const e = require('../core/elements');
const { getSettings } = require('../core/settings');
class Status extends Page {
constructor(browser, page) {
super(browser, page);
}
async changeUserStatus() {
const { userStatusEnabled } = getSettings();
test.fail(!userStatusEnabled, 'User status is disabled');
await waitAndClearDefaultPresentationNotification(this);
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.userListToggleBtn);
await this.waitForSelector(e.currentUser);
await this.hasElement(e.mobileUser);
}
}
exports.Status = Status;