summaryrefslogtreecommitdiff
blob: c2b371884d5c1a7f9dc96a7b1c002cf4c83751d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'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.config.mwUser, browser.config.mwPwd );
		NotificationsPage.open();

		assert.strictEqual( NotificationsPage.notificationHeading.getText(), 'Notifications' );

	} );

} );