ed1f1bcc8417bff47ca74da7a81a064eda95ab0c
[lhc/web/wiklou.git] / tests / selenium / pageobjects / page.js
1 // From http://webdriver.io/guide/testrunner/pageobjects.html
2 'use strict';
3 class Page {
4 open( path ) {
5 browser.url( '/index.php?title=' + path );
6 }
7 }
8 module.exports = Page;