mediawiki-extensions-Echo/tests/selenium/specs/mention.js
Kosta Harlan efd759402f Skip broken Selenium test
Caused failure in
https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Echo/+/524520#message-7f1addb6b8b09919581014fe18c6dddef32fb078

Bug: T227009
Change-Id: Iae088bc7c966f927a15d06a4de5966a76913dbe4
2019-07-30 16:54:31 +02:00

28 lines
941 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();
let regexp = /.* mentioned you on User:.*./;
assert( regexp.test( EchoPage.alertMessage.getText() ) );
} );
} );