Selenium: Upgrade WebdriverIO to 4.12.0
[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( browser.options.baseUrl + '/index.php?title=' + path );
6 }
7 }
8 module.exports = Page;