bigbluebutton-Github/bigbluebutton-tests/playwright/audio/audio.spec.js

51 lines
1.7 KiB
JavaScript
Raw Normal View History

2021-11-23 01:06:59 +08:00
const { test } = require('@playwright/test');
2022-07-16 04:54:16 +08:00
const { MultiUsers } = require('../user/multiusers');
const { Audio } = require('./audio');
2021-11-23 01:06:59 +08:00
test.describe.parallel('Audio', () => {
2022-06-08 02:52:22 +08:00
test('Join audio with Listen Only @ci', async ({ browser, page }) => {
2021-11-23 01:06:59 +08:00
const audio = new Audio(browser, page);
await audio.init(true, false);
await audio.joinAudio();
});
2022-06-08 02:52:22 +08:00
test('Join audio with Microphone @ci', async ({ browser, page }) => {
2021-11-23 01:06:59 +08:00
const audio = new Audio(browser, page);
await audio.init(true, false);
await audio.joinMicrophone();
});
2022-07-16 04:54:16 +08:00
test('Mute youself by clicking the mute button @ci', async ({ browser, page }) => {
const audio = new Audio(browser, page);
await audio.init(true, false);
await audio.muteYourselfByButton();
});
test('Change audio input and keep it connected', async ({ browser, page }) => {
const audio = new Audio(browser, page);
await audio.init(true, false);
await audio.changeAudioInput();
});
test('Keep the last mute state after rejoining audio @ci', async ({ browser, page }) => {
const audio = new Audio(browser, page);
await audio.init(true, false);
await audio.keepMuteStateOnRejoin();
});
test.describe.parallel('Talking indicator @ci', () => {
test('Mute youself by clicking the talking indicator', async ({ browser, page }) => {
const audio = new Audio(browser, page);
await audio.init(true, false);
await audio.muteYourselfBytalkingIndicator();
});
test('Mute another user by clicking the talking indicator', async ({ browser, context, page }) => {
const audio = new MultiUsers(browser, context);
await audio.initModPage(page);
await audio.initUserPage(false);
await audio.muteAnotherUser();
});
});
2021-12-04 01:01:36 +08:00
});