2017-03-28 13:59:35 +00:00
|
|
|
'use strict';
|
|
|
|
const Page = require( 'wdio-mediawiki/Page' );
|
|
|
|
|
|
|
|
class EditPage extends Page {
|
|
|
|
|
2021-09-14 16:32:09 +00:00
|
|
|
get content() { return $( '#content' ); }
|
|
|
|
get edited() { return $( '*=Your edit was saved' ); }
|
|
|
|
get notices() { return $( '.ve-ui-mwNoticesPopupTool-items' ); }
|
2022-05-31 14:36:52 +00:00
|
|
|
get notification() { return $( 'div.mw-notification-content span.oo-ui-labelElement-label' ); }
|
2021-09-14 16:32:09 +00:00
|
|
|
get savePage() { return $( '.ve-ui-overlay-global .oo-ui-processDialog-actions-primary' ); }
|
|
|
|
get savePageDots() { return $( '.ve-ui-toolbar-saveButton' ); }
|
2022-03-21 14:54:47 +00:00
|
|
|
get toolbar() { return $( '.ve-init-mw-desktopArticleTarget-toolbar-open' ); }
|
2021-09-14 16:32:09 +00:00
|
|
|
get veBodyContent() { return $( '.mw-body-content.ve-ui-surface' ); }
|
2022-04-04 15:28:07 +00:00
|
|
|
get veRootNode() { return $( '.ve-ce-rootNode[role="textbox"]' ); }
|
2017-03-28 13:59:35 +00:00
|
|
|
|
|
|
|
openForEditing( title ) {
|
2022-06-13 11:39:52 +00:00
|
|
|
super.openTitle( title, { veaction: 'edit', cxhidebetapopup: 1, hidewelcomedialog: 1, vehidebetadialog: 1 } );
|
2017-03-28 13:59:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 15:53:17 +00:00
|
|
|
activationComplete() {
|
|
|
|
return browser.executeAsync( function ( done ) {
|
|
|
|
mw.hook( 've.activationComplete' ).add( function () {
|
|
|
|
done();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2022-06-08 14:56:24 +00:00
|
|
|
saveComplete() {
|
|
|
|
return browser.executeAsync( function ( done ) {
|
|
|
|
ve.init.target.on( 'save', function () {
|
|
|
|
done();
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2017-03-28 13:59:35 +00:00
|
|
|
}
|
|
|
|
module.exports = new EditPage();
|