mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-18 16:51:05 +00:00
842a91590a
* eslint-config-wikimedia: 0.27.0 → 0.28.2 The following rules are failing and were disabled: * tests/selenium: * implicit-arrow-linebreak * no-mixed-spaces-and-tabs * grunt-banana-checker: 0.11.1 → 0.13.0 * stylelint-config-wikimedia: 0.16.1 → 0.17.2 The following rules no longer exist and were removed: * stylistic/selector-list-comma-newline-after * braces: 3.0.2 → 3.0.3 * https://github.com/advisories/GHSA-grv7-fg5c-xmjg Change-Id: Ia94454c1da778f241085714e1601a0233d547570
73 lines
2.6 KiB
JavaScript
73 lines
2.6 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' );
|
|
const { ArticlePageWithEditorOverlay, ArticlePage } = require( '../support/world.js' );
|
|
|
|
const iClickTheEditButton = async () => {
|
|
await ArticlePage.edit_link_element.waitForDisplayed();
|
|
await ArticlePage.edit_link_element.click();
|
|
};
|
|
const iSeeTheWikitextEditorOverlay = async () => {
|
|
await ArticlePageWithEditorOverlay.editor_overlay_element.waitForDisplayed();
|
|
await ArticlePageWithEditorOverlay.editor_textarea_element.waitForExist();
|
|
};
|
|
const iClearTheEditor = () => {
|
|
ArticlePageWithEditorOverlay.editor_textarea_element.setValue( '' );
|
|
};
|
|
const iDoNotSeeTheWikitextEditorOverlay = () => {
|
|
browser.waitUntil( () => ArticlePageWithEditorOverlay.editor_overlay_element.isDisplayed() === false, 10000 );
|
|
};
|
|
const iTypeIntoTheEditor = ( text ) => {
|
|
ArticlePageWithEditorOverlay.editor_overlay_element.waitForExist();
|
|
ArticlePageWithEditorOverlay.editor_textarea_element.waitForExist();
|
|
ArticlePageWithEditorOverlay.editor_textarea_element.waitForDisplayed();
|
|
// Make sure the slow connection load basic button is gone (T348539)
|
|
browser.waitUntil( () => ArticlePageWithEditorOverlay.editor_load_basic_element.isDisplayed() === false );
|
|
ArticlePageWithEditorOverlay.editor_textarea_element.addValue( text );
|
|
browser.waitUntil( () => !ArticlePageWithEditorOverlay
|
|
.continue_element.getAttribute( 'disabled' ) );
|
|
};
|
|
const iClickContinue = () => {
|
|
ArticlePageWithEditorOverlay.continue_element.waitForExist();
|
|
ArticlePageWithEditorOverlay.continue_element.click();
|
|
};
|
|
const iClickSubmit = () => {
|
|
ArticlePageWithEditorOverlay.submit_element.waitForExist();
|
|
ArticlePageWithEditorOverlay.submit_element.click();
|
|
};
|
|
const iSayOkayInTheConfirmDialog = () => {
|
|
browser.waitUntil( () => {
|
|
try {
|
|
const text = browser.getAlertText();
|
|
return text && true;
|
|
} catch ( e ) {
|
|
return false;
|
|
}
|
|
}, 2000 );
|
|
browser.acceptAlert();
|
|
};
|
|
const theTextOfTheFirstHeadingShouldBe = async ( title ) => {
|
|
await ArticlePage.first_heading_element.waitForDisplayed();
|
|
title = mw.util.escapeRegExp( title );
|
|
assert.match(
|
|
await ArticlePage.first_heading_element.getText(),
|
|
// eslint-disable-next-line security/detect-non-literal-regexp
|
|
new RegExp( `.*${ title }$` )
|
|
);
|
|
};
|
|
const thereShouldBeARedLinkWithText = ( text ) => {
|
|
ArticlePage.red_link_element.waitForExist();
|
|
assert.strictEqual(
|
|
ArticlePage.red_link_element.getText(),
|
|
text
|
|
);
|
|
};
|
|
|
|
module.exports = {
|
|
iClickTheEditButton, iSeeTheWikitextEditorOverlay, iClearTheEditor,
|
|
thereShouldBeARedLinkWithText,
|
|
iDoNotSeeTheWikitextEditorOverlay,
|
|
iTypeIntoTheEditor, iClickContinue, iClickSubmit, iSayOkayInTheConfirmDialog,
|
|
theTextOfTheFirstHeadingShouldBe
|
|
};
|