mediawiki-extensions-Visual.../tests/selenium/specs/toolbar.js
libraryupgrader 702677220d build: Updating eslint-config-wikimedia to 0.28.0
The following rules are failing and were disabled:
* modules/ve-mw/tests:
  * implicit-arrow-linebreak

Change-Id: If857233c0de24c8cf619dbb1347ebb375f3ab1ba
2024-06-04 03:40:00 +00:00

77 lines
2.1 KiB
JavaScript

'use strict';
const assert = require( 'assert' );
const EditPage = require( '../pageobjects/edit.page' );
const Util = require( 'wdio-mediawiki/Util' );
describe( 'Toolbar', () => {
let name;
beforeEach( async () => {
name = Util.getTestString();
await EditPage.openForEditing( name );
await EditPage.toolbar.waitForDisplayed( { timeout: 20000 } );
} );
afterEach( async () => {
// T269566: Popup with text
// 'Leave site? Changes that you made may not be saved. Cancel/Leave'
// appears after the browser tries to leave the page with the preview.
await browser.reloadSession();
} );
it( 'should open notices popup as soon as it loads', async () => {
assert( await EditPage.notices.isDisplayed() );
} );
it( 'should open switch editor', async () => {
await EditPage.switchEditorElement.click();
assert( await EditPage.visualEditing.isDisplayed() );
} );
it( 'should open page options', async () => {
await EditPage.pageOptionsElement.click();
assert( await EditPage.options.isDisplayed() );
} );
it( 'should open help popup', async () => {
await EditPage.helpElement.click();
assert( await EditPage.helpPopup.isDisplayed() );
} );
it.skip( 'should open special characters menu', async () => {
await EditPage.specialCharacterElement.click();
await EditPage.specialCharacterMenu.waitForDisplayed( { timeout: 1000 } );
assert( await EditPage.specialCharacterMenu.isDisplayed() );
} );
it( 'should open insert menu', async () => {
await EditPage.insert.click();
assert( await EditPage.insertMenu.isDisplayed() );
} );
it( 'should open structure options menu', async () => {
await EditPage.structureOptionsElement.click();
assert( await EditPage.bulletListOption.isDisplayed() );
} );
it( 'should open style text options', async () => {
await EditPage.styleTextElement.click();
assert( await EditPage.boldTextStyleOption.isDisplayed() );
} );
it( 'should open format paragraph menu', async () => {
await EditPage.formatParagraphElement.click();
assert( await EditPage.paragraphFormatMenu.isDisplayed() );
} );
} );