mediawiki-extensions-Visual.../tests/selenium/specs/toolbar.js
Esther Akinloose 99f9899193 selenium: Toolbar should open format paragraph menu
Bug: T296187
Change-Id: Icb1fabcf054a2fb1b290815d6cc9945bda0433a4
2022-12-21 14:10:31 +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', function () {
let name;
beforeEach( async function () {
name = Util.getTestString();
await EditPage.openForEditing( name );
await EditPage.toolbar.waitForDisplayed( { timeout: 20000 } );
} );
afterEach( async function () {
// 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 function () {
assert( await EditPage.notices.isDisplayed() );
} );
it( 'should open switch editor', async function () {
await EditPage.switchEditorElement.click();
assert( await EditPage.visualEditing.isDisplayed() );
} );
it( 'should open page options', async function () {
await EditPage.pageOptionsElement.click();
assert( await EditPage.options.isDisplayed() );
} );
it( 'should open help popup', async function () {
await EditPage.helpElement.click();
assert( await EditPage.helpPopup.isDisplayed() );
} );
it( 'should open special characters menu', async function () {
await EditPage.specialCharacterElement.click();
await EditPage.specialCharacterMenu.waitForDisplayed( { timeout: 1000 } );
assert( await EditPage.specialCharacterMenu.isDisplayed() );
} );
it( 'should open insert menu', async function () {
await EditPage.insert.click();
assert( await EditPage.insertMenu.isDisplayed() );
} );
it( 'should open structure options menu', async function () {
await EditPage.structureOptionsElement.click();
assert( await EditPage.bulletListOption.isDisplayed() );
} );
it( 'should open style text options', async function () {
await EditPage.styleTextElement.click();
assert( await EditPage.boldTextStyleOption.isDisplayed() );
} );
it( 'should open format paragraph menu', async function () {
await EditPage.formatParagraphElement.click();
assert( await EditPage.paragraphFormatMenu.isDisplayed() );
} );
} );