mediawiki-skins-MinervaNeue/tests/selenium/features/step_definitions/editor_steps.js
Fomafix 93945857b8 Fix eslint warnings in Selenium JavaScript code
Change-Id: I02d2114e668d1ea9d2a28d2823dc6f9bfa032b8a
2024-09-04 08:33:13 +00:00

77 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
};