mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
8ef144f936
Change-Id: I5aa3ab891890b52057a5fc855315e5b1b2203037
77 lines
2.6 KiB
JavaScript
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( () => {
|
|
return 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( () => {
|
|
return ArticlePageWithEditorOverlay.editor_load_basic_element.isDisplayed() === false;
|
|
} );
|
|
ArticlePageWithEditorOverlay.editor_textarea_element.addValue( text );
|
|
browser.waitUntil( () => {
|
|
return !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();
|
|
assert.match(
|
|
await ArticlePage.first_heading_element.getText(),
|
|
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
|
|
};
|