mediawiki-extensions-Echo/tests/selenium/specs/mention.js
Ed Sanders 80ddee3956 build: Update linters
Change-Id: I713aafb891306fc21a776a7d4622c6a039798753
2019-12-12 11:20:49 +00:00

28 lines
943 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var assert = require( 'assert' ),
EchoPage = require( '../pageobjects/echo.page' ),
UserLoginPage = require( 'wdio-mediawiki/LoginPage' ),
Util = require( 'wdio-mediawiki/Util' ),
Api = require( 'wdio-mediawiki/Api' );
describe( 'Mention test for Echo', function () {
it.skip( 'checks if admin gets alert when mentioned', function () {
var username = Util.getTestString( 'NewUser-' );
var password = Util.getTestString();
browser.call( function () {
return Api.createAccount( username, password
).then( function () {
return Api.edit( `User:${username}`, `Hello [[User:${browser.options.username}]] ~~~~`, username, password );
} );
} );
UserLoginPage.login( browser.options.username, browser.options.password );
EchoPage.alerts.click();
EchoPage.alertMessage.waitForVisible();
const regexp = /.* mentioned you on User:.*./;
assert( regexp.test( EchoPage.alertMessage.getText() ) );
} );
} );