9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
|
|
// From http://webdriver.io/guide/testrunner/pageobjects.html
|
||
|
|
'use strict';
|
||
|
|
class Page {
|
||
|
|
open( path ) {
|
||
|
|
browser.url( '/index.php?title=' + path );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
module.exports = Page;
|