mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2025-01-10 05:44:44 +00:00
ffe3363d09
Change-Id: I2ce14429f9440e69e36fa349847f58fb32862f2a
19 lines
488 B
JavaScript
19 lines
488 B
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' ),
|
|
NotificationsPage = require( '../pageobjects/notifications.page' ),
|
|
UserLoginPage = require( 'wdio-mediawiki/LoginPage' );
|
|
|
|
describe( 'Notifications', function () {
|
|
|
|
it( 'checks for Notifications Page @daily', function () {
|
|
|
|
UserLoginPage.login( browser.options.username, browser.options.password );
|
|
NotificationsPage.open();
|
|
|
|
assert.strictEqual( NotificationsPage.notificationHeading.getText(), 'Notifications' );
|
|
|
|
} );
|
|
|
|
} );
|