mediawiki-skins-MinervaNeue/tests/selenium/pageobjects/edit.page.js
Željko Filipin 238010dbea selenium: Page should be creatable
Bug: T269051
Change-Id: I958d1f5035f7d28c70ff19c3db6f3707defa880f
2021-04-26 15:30:31 +02:00

28 lines
749 B
JavaScript

'use strict';
const Page = require( 'wdio-mediawiki/Page' );
class EditPage extends Page {
get content() { return $( '#wikitext-editor' ); }
get displayedContent() { return $( '#mw-content-text .mw-parser-output' ); }
get editWithoutLoggingIn() { return $( '.anonymous' ); }
get heading() { return $( '#section_0' ); }
get next() { return $( '.mw-ui-icon-mf-next-invert' ); }
get save() { return $( 'button.mw-ui-button' ); }
openForEditing( title ) {
super.openTitle( title, { action: 'edit' } );
}
edit( name, content ) {
this.openForEditing( name );
this.editWithoutLoggingIn.click();
this.content.setValue( content );
this.next.click();
this.save.click();
browser.acceptAlert();
}
}
module.exports = new EditPage();