bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/pageobjects/landing.page.js
Maxim Khlobystov 2013109236 Do initial WebdriverIO setup + Add dummy landing page title test
This commit adds 2 packages:
    - WebdriverIO main package
    - Jasmine integration for WebdriverIO

Dummy landing page spec is created (supposed to test the title, but doesn't actually do that yet). This new spec follows the Page Object pattern.
2017-05-14 03:52:43 +00:00

16 lines
293 B
JavaScript

var page = require('./page');
var landingPage = Object.create(page, {
open: {
value: function() {
return page.open.call(this, 'demo/demoHTML5.jsp');
}
},
title: {
value: 'Join Meeting via HTML5 Client'
}
});
module.exports = landingPage;