Merge "jquery.makeCollapsible: Fix typo in documentation"
[lhc/web/wiklou.git] / tests / selenium / pageobjects / page.js
1 /**
2 * Based on http://webdriver.io/guide/testrunner/pageobjects.html
3 */
4
5 class Page {
6 open( path ) {
7 browser.url( browser.options.baseUrl + '/index.php?title=' + path );
8 }
9 }
10
11 module.exports = Page;