49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
const { test } = require('@playwright/test');
|
|
const { testSpeakerButton } = require('../core/elements');
|
|
const { Audio } = require('./audio');
|
|
|
|
test.describe.serial('Audio', () => {
|
|
const audio = new Audio();
|
|
test.beforeAll(async ({ browser }) => {
|
|
const context = await browser.newContext();
|
|
const page = await context.newPage();
|
|
await audio.initModPage(page, true);
|
|
await audio.initUserPage(true, context);
|
|
});
|
|
|
|
// https://docs.bigbluebutton.org/2.6/release-tests.html#listen-only-mode-automated
|
|
test('Join audio with Listen Only @ci', async () => {
|
|
await audio.joinAudio();
|
|
});
|
|
|
|
// https://docs.bigbluebutton.org/2.6/release-tests.html#join-audio-automated
|
|
test('Join audio with Microphone @ci', async () => {
|
|
await audio.joinMicrophone();
|
|
});
|
|
|
|
test('Change audio input and keep it connected', async () => {
|
|
await audio.changeAudioInput();
|
|
});
|
|
|
|
// https://docs.bigbluebutton.org/2.6/release-tests.html#muteunmute
|
|
test('Mute yourself by clicking the mute button', async () => {
|
|
await audio.muteYourselfByButton();
|
|
});
|
|
|
|
// https://docs.bigbluebutton.org/2.6/release-tests.html#choosing-different-sources
|
|
test('Keep the last mute state after rejoining audio @ci', async () => {
|
|
await audio.keepMuteStateOnRejoin();
|
|
});
|
|
|
|
// Talking Indicator
|
|
// https://docs.bigbluebutton.org/2.6/release-tests.html#talking-indicator
|
|
test('Mute yourself by clicking the talking indicator', async () => {
|
|
await audio.muteYourselfByTalkingIndicator();
|
|
});
|
|
|
|
// https://docs.bigbluebutton.org/2.6/release-tests.html#talking-indicator
|
|
test('Mute another user by clicking the talking indicator', async () => {
|
|
await audio.muteAnotherUser();
|
|
});
|
|
});
|