wiki.techinc.nl/tests/selenium/specs/page.js
Željko Filipin fedebb1834 Disable VisualEditor welcome dialog when running Selenium tests
Bug: T164721
Change-Id: I7b5f73c6fbaaa221ac1b689344f9015fb903220f
2017-07-07 11:54:46 +02:00

66 lines
1.4 KiB
JavaScript

'use strict';
const assert = require( 'assert' ),
EditPage = require( '../pageobjects/edit.page' ),
HistoryPage = require( '../pageobjects/history.page' ),
UserLoginPage = require( '../pageobjects/userlogin.page' );
describe( 'Page', function () {
var content,
name;
before( function () {
// disable VisualEditor welcome dialog
UserLoginPage.open();
browser.localStorage( 'POST', { key: 've-beta-welcome-dialog', value: '1' } );
} );
beforeEach( function () {
browser.deleteCookie();
content = Math.random().toString();
name = Math.random().toString();
} );
it( 'should be creatable', function () {
// create
EditPage.edit( name, content );
// check
assert.equal( EditPage.heading.getText(), name );
assert.equal( EditPage.displayedContent.getText(), content );
} );
it( 'should be editable', function () {
var content2 = Math.random().toString();
// create
browser.call( function () {
return EditPage.apiEdit( name, content );
} );
// edit
EditPage.edit( name, content2 );
// check
assert.equal( EditPage.heading.getText(), name );
assert.equal( EditPage.displayedContent.getText(), content2 );
} );
it( 'should have history', function () {
// create
browser.call( function () {
return EditPage.apiEdit( name, content );
} );
// check
HistoryPage.open( name );
assert.equal( HistoryPage.comment.getText(), `(Created page with "${content}")` );
} );
} );