mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-04 04:09:00 +00:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
|
const Page = require( 'wdio-mediawiki/Page' );
|
||
|
|
||
|
class NotificationsPage extends Page {
|
||
|
|
||
|
get notificationHeading() { return browser.element( '#firstHeading' ); }
|
||
|
open() {
|
||
|
super.openTitle( 'Special:Notifications', { uselang: 'en' } );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = new NotificationsPage();
|