mediawiki-extensions-Visual.../tests/selenium/specs/content_editable.js
Esther Akinloose 529f004fc6 selenium: Move code to beforeEach and afterEach hooks
Bug: T296187
Change-Id: Iad8482e432491895eac070692fd3448e6362e4ce
2022-10-10 14:36:33 +01:00

48 lines
1.4 KiB
JavaScript

'use strict';
const assert = require( 'assert' );
const EditPage = require( '../pageobjects/edit.page' );
const LoginPage = require( 'wdio-mediawiki/LoginPage' );
const Util = require( 'wdio-mediawiki/Util' );
describe( 'Content Editable', function () {
let name, content;
beforeEach( async function () {
content = Util.getTestString();
name = Util.getTestString();
await LoginPage.loginAdmin();
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 load when an url is opened @daily', async function () {
assert( await EditPage.toolbar.isDisplayed() );
} );
it( 'should be editable', async function () {
await EditPage.veRootNode.setValue( content );
assert.equal( await EditPage.veRootNode.getText(), content );
} );
it( 'should save an edit', async function () {
await EditPage.veRootNode.setValue( content );
await EditPage.savePageDots.click();
await EditPage.savePage.waitForClickable();
await EditPage.savePage.click();
await EditPage.saveComplete();
assert.strictEqual( await EditPage.notification.getText(), 'The page has been created.' );
} );
} );