mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-03 18:26:16 +00:00
8ef144f936
Change-Id: I5aa3ab891890b52057a5fc855315e5b1b2203037
27 lines
901 B
JavaScript
27 lines
901 B
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' );
|
|
const { ArticlePage } = require( '../support/world.js' );
|
|
const { iAmOnPage } = require( './common_steps' );
|
|
const { theTextOfTheFirstHeadingShouldBe } = require( './editor_steps' );
|
|
|
|
const username = browser.config.mwUser.replace( /_/g, ' ' );
|
|
|
|
const iVisitMyUserPage = async () => {
|
|
await iAmOnPage( `User:${ username }` );
|
|
};
|
|
|
|
const iShouldBeOnMyUserPage = async () => {
|
|
await theTextOfTheFirstHeadingShouldBe( username );
|
|
};
|
|
|
|
const thereShouldBeALinkToMyContributions = async () => {
|
|
assert.strictEqual( await ArticlePage.contributions_link_element.isDisplayed(), true );
|
|
};
|
|
const thereShouldBeALinkToMyTalkPage = async () => {
|
|
assert.strictEqual( await ArticlePage.talk_tab_element.isDisplayed(), true );
|
|
};
|
|
|
|
module.exports = { iVisitMyUserPage, iShouldBeOnMyUserPage,
|
|
thereShouldBeALinkToMyContributions, thereShouldBeALinkToMyTalkPage };
|