mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 11:59:11 +00:00
2f61c46cf0
Change-Id: I234e460ce1d1887af17c90cb9536aea76e295ca8
17 lines
290 B
JavaScript
17 lines
290 B
JavaScript
'use strict';
|
|
|
|
const Page = require( 'wdio-mediawiki/Page' );
|
|
|
|
class NotificationsPage extends Page {
|
|
|
|
get notificationHeading() {
|
|
return $( '#firstHeading' );
|
|
}
|
|
|
|
open() {
|
|
super.openTitle( 'Special:Notifications', { uselang: 'en' } );
|
|
}
|
|
}
|
|
|
|
module.exports = new NotificationsPage();
|