mediawiki-extensions-Echo/tests/selenium/pageobjects/notifications.page.js

12 lines
285 B
JavaScript
Raw Normal View History

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();