bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/utils.js
2019-06-04 11:05:27 -04:00

13 lines
153 B
JavaScript

class Utils {
configureViewport() {
browser.setViewportSize({
width: 1366,
height: 768,
});
}
}
module.exports = new Utils();