wiki.techinc.nl/tests/selenium/wdio-mediawiki/BlankPage.js
James D. Forrester c2aa05102d build: Upgrade eslint-config-wikimedia from 0.25.0 to 0.26.0 and make pass
Mostly this has a bunch of whitespace changes from the
template-curly-spacing and brace-style rules being set
to align with other spacing rules.

Change-Id: I4609c52a4ef426ad1f35fb4bfe447bb08323a8e8
2023-11-22 13:25:32 -05:00

15 lines
256 B
JavaScript

'use strict';
const Page = require( './Page' );
class BlankPage extends Page {
get heading() {
return $( '#firstHeading' );
}
async open() {
await super.openTitle( 'Special:BlankPage', { uselang: 'en' } );
}
}
module.exports = new BlankPage();