'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', async function () { // page should have random name const pageName = Math.random().toString(); // create a page with a simple addition await bot.edit( pageName, '3 + 2' ); await MathPage.openTitle( pageName ); // check if the page displays the image assert( await MathPage.img.isExisting() ); } ); } );