bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/pageobjects/page.js
2017-06-03 00:25:39 +00:00

13 lines
186 B
JavaScript

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