Merge "Do not output invalid links for deleted names on Special:Contributions"
[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 constructor() {
5 this.title = 'My Page';
6 }
7 open( path ) {
8 browser.url( '/index.php?title=' + path );
9 }
10 }
11 module.exports = Page;