wiki.techinc.nl/tests/selenium/specs/user.js
osamaahmed17 ecd2550027 selenium: Refactor WebdriverIO tests from sync to async mode
Adding missing await statements.

Bug: T293071
Change-Id: I2818d8a72d2ad1d0173e0ee284de3ad8c67c9e18
2022-01-29 04:00:51 +11:00

43 lines
1.1 KiB
JavaScript

'use strict';
const assert = require( 'assert' );
const CreateAccountPage = require( 'wdio-mediawiki/CreateAccountPage' );
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( async function () {
await browser.deleteAllCookies();
username = Util.getTestString( 'User-' );
password = Util.getTestString();
} );
it( 'should be able to create account', async function () {
// create
await CreateAccountPage.createAccount( username, password );
// check
assert.strictEqual( await CreateAccountPage.heading.getText(), `Welcome, ${username}!` );
} );
it( 'should be able to log in @daily', async function () {
// create
await Api.createAccount( bot, username, password );
// log in
await UserLoginPage.login( username, password );
// check
const actualUsername = await browser.execute( async () => {
return mw.config.get( 'wgUserName' );
} );
assert.strictEqual( await actualUsername, username );
} );
} );