bigbluebutton-Github/bigbluebutton-html5/tests/puppeteer/customparameters/util.js
2020-06-15 16:07:10 -03:00

7 lines
238 B
JavaScript

async function autoJoinTest(test) {
const resp = await test.page.evaluate(async () => await document.querySelectorAll('div[aria-label="Join audio modal"]').length === 0) !== false;
return resp;
}
exports.autoJoinTest = autoJoinTest;