bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/utils.js

13 lines
153 B
JavaScript
Raw Normal View History

2019-06-04 23:05:27 +08:00
class Utils {
configureViewport() {
browser.setViewportSize({
width: 1366,
height: 768,
});
}
}
module.exports = new Utils();