mediawiki-extensions-Echo/tests/selenium/pageobjects/notifications.page.js
ephemeralwaves 319808de5d Selenium: the first test for Special:Notifications
Open the notifications page and check that the notification heading is present.

Bug: T217051
Change-Id: I357e83eca9f6d6fe380ec6996fb557d578a76912
2019-03-25 15:47:38 +00:00

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