22 lines
448 B
JavaScript
22 lines
448 B
JavaScript
'use strict';
|
|
|
|
const Page = require( 'wdio-mediawiki/Page' );
|
|
|
|
class UndoPage extends Page {
|
|
|
|
get save() { return $( '#wpSave' ); }
|
|
|
|
undo( title, previousRev, undoRev ) {
|
|
super.openTitle( title, {
|
|
action: 'edit',
|
|
undoafter: previousRev,
|
|
undo: undoRev,
|
|
// T276783: suppress welcome dialog that would prevent save if VisualEditor is installed
|
|
vehidebetadialog: 1
|
|
} );
|
|
this.save.click();
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = new UndoPage();
|