mediawiki-extensions-Math/tests/selenium/specs/basic.js

32 lines
631 B
JavaScript
Raw Normal View History

'use strict';
const assert = require( 'assert' ),
Api = require( 'wdio-mediawiki/Api' ),
MathPage = require( '../pageobjects/math.page' );
describe( 'Math', function () {
let bot;
before( async () => {
bot = await Api.bot();
} );
it( 'should work for addition', function () {
// page should have random name
const pageName = Math.random().toString();
// create a page with a simple addition
browser.call( async () => {
await bot.edit( pageName, '<math>3 + 2</math>' );
} );
MathPage.openTitle( pageName );
// check if the page displays the image
assert( MathPage.img.isExisting() );
} );
} );