* valid-jsdoc replaced with jsdoc plugin * New /selenium config Change-Id: I471eebac0312cb25c539c3f6a3ecfc7cfd4ed8d6
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' );
|
|
const CreateAccountPage = require( '../pageobjects/createaccount.page' );
|
|
const PreferencesPage = require( '../pageobjects/preferences.page' );
|
|
const UserLoginPage = require( 'wdio-mediawiki/LoginPage' );
|
|
const Api = require( 'wdio-mediawiki/Api' );
|
|
const Util = require( 'wdio-mediawiki/Util' );
|
|
|
|
describe( 'User', function () {
|
|
let password, username, bot;
|
|
|
|
before( async () => {
|
|
bot = await Api.bot();
|
|
} );
|
|
|
|
beforeEach( function () {
|
|
browser.deleteAllCookies();
|
|
username = Util.getTestString( 'User-' );
|
|
password = Util.getTestString();
|
|
} );
|
|
|
|
it( 'should be able to create account', function () {
|
|
// create
|
|
CreateAccountPage.createAccount( username, password );
|
|
|
|
// check
|
|
assert.strictEqual( CreateAccountPage.heading.getText(), `Welcome, ${username}!` );
|
|
} );
|
|
|
|
it( 'should be able to log in @daily', function () {
|
|
// create
|
|
browser.call( async () => {
|
|
await Api.createAccount( bot, username, password );
|
|
} );
|
|
|
|
// log in
|
|
UserLoginPage.login( username, password );
|
|
|
|
// check
|
|
const actualUsername = browser.execute( () => {
|
|
return mw.config.get( 'wgUserName' );
|
|
} );
|
|
assert.strictEqual( actualUsername, username );
|
|
} );
|
|
|
|
// Disabled due to flakiness (T199446)
|
|
it.skip( 'should be able to change preferences', function () {
|
|
const realName = Util.getTestString();
|
|
|
|
// create
|
|
browser.call( async () => {
|
|
await Api.createAccount( bot, username, password );
|
|
} );
|
|
|
|
// log in
|
|
UserLoginPage.login( username, password );
|
|
|
|
// change
|
|
PreferencesPage.changeRealName( realName );
|
|
|
|
// check
|
|
assert.strictEqual( PreferencesPage.realName.getValue(), realName );
|
|
} );
|
|
} );
|