bigbluebutton-Github/bigbluebutton-tests/playwright/core/util.js

6 lines
159 B
JavaScript
Raw Normal View History

2021-11-26 02:23:58 +08:00
// Common
function checkElement(element, index = 0) {
return document.querySelectorAll(element)[index] !== undefined;
}
exports.checkElement = checkElement;