bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/pageobjects/page.js

13 lines
188 B
JavaScript
Raw Normal View History

function Page() {}
Page.prototype.open = function(path) {
browser.url(path);
};
Page.prototype.pressEnter = function() {
browser.keys('Enter');
};
module.exports = new Page();